summaryrefslogtreecommitdiff
path: root/src/context/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context.h')
-rw-r--r--src/context/context.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/context/context.h b/src/context/context.h
index ff650ce5d..caa5fa57b 100644
--- a/src/context/context.h
+++ b/src/context/context.h
@@ -505,7 +505,9 @@ public:
* ContextMemoryManager as an argument.
*/
void deleteSelf() {
- Debug("context") << "deleteSelf(" << this << ")" << std::endl;
+ if(debugTagIsOn("context")) {
+ Debug("context") << "deleteSelf(" << this << ")" << std::endl;
+ }
this->~ContextObj();
::operator delete(this);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback