summaryrefslogtreecommitdiff
path: root/src/context/context.cpp
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-04-17 00:43:42 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-04-17 00:43:42 +0000
commit96733823eadf9ff566a177cf74e19d1712c48e4b (patch)
tree405e1675a00d74d8daebe82c051f348bbef5467f /src/context/context.cpp
parentfd376e254916e20310427d7a670e580105769970 (diff)
Fixing compiler error for optimized builds
Diffstat (limited to 'src/context/context.cpp')
-rw-r--r--src/context/context.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/context/context.cpp b/src/context/context.cpp
index ca6564cf5..2be116baa 100644
--- a/src/context/context.cpp
+++ b/src/context/context.cpp
@@ -227,7 +227,7 @@ ContextObj* ContextObj::restoreAndContinue() throw(AssertionException) {
void ContextObj::destroy() throw(AssertionException) {
- if( Debug.isOn("context") ) {
+ if( DebugOut.isOn("context") ) {
/* Context can be big and complicated, so we only want to process this output
* if we're really going to use it. (Same goes below.)
*/
@@ -246,7 +246,7 @@ void ContextObj::destroy() throw(AssertionException) {
if(d_pContextObjRestore == NULL) {
break;
}
- if( Debug.isOn("context") ) {
+ if( DebugOut.isOn("context") ) {
Debug("context") << "in destroy " << this << ", restore object is "
<< d_pContextObjRestore << " at level "
<< d_pContextObjRestore->getLevel() << ":" << std::endl
@@ -254,7 +254,7 @@ void ContextObj::destroy() throw(AssertionException) {
}
restoreAndContinue();
}
- if( Debug.isOn("context") ) {
+ if( DebugOut.isOn("context") ) {
Debug("context") << "after destroy " << this << ":" << std::endl
<< *getContext() << std::endl;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback