summaryrefslogtreecommitdiff
path: root/src/context/context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context.cpp')
-rw-r--r--src/context/context.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context/context.cpp b/src/context/context.cpp
index 2b220d5b4..abb1575d4 100644
--- a/src/context/context.cpp
+++ b/src/context/context.cpp
@@ -62,7 +62,7 @@ Context::~Context() throw(AssertionException) {
void Context::push() {
Trace("pushpop") << std::string(2 * getLevel(), ' ') << "Push [to "
- << getLevel() + 1 << "] {" << std::endl;
+ << getLevel() + 1 << "] { " << this << std::endl;
// Create a new memory region
d_pCMM->push();
@@ -106,7 +106,7 @@ void Context::pop() {
}
Trace("pushpop") << std::string(2 * getLevel(), ' ') << "} Pop [to "
- << getLevel() << "]" << std::endl;
+ << getLevel() << "] " << this << std::endl;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback