summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
Diffstat (limited to 'src/context')
-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 476f6d04b..a00364fe6 100644
--- a/src/context/context.cpp
+++ b/src/context/context.cpp
@@ -33,7 +33,7 @@ Context::Context() : d_pCNOpre(NULL), d_pCNOpost(NULL) {
Context::~Context() {
// Delete all Scopes
- popto(-1);
+ popto(0);
// Delete the memory manager
delete d_pCMM;
@@ -99,7 +99,7 @@ void Context::pop() {
void Context::popto(int toLevel) {
// Pop scopes until there are none left or toLevel is reached
- if (toLevel < -1) toLevel = -1;
+ if (toLevel < 0) toLevel = 0;
while (toLevel < getLevel()) pop();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback