summaryrefslogtreecommitdiff
path: root/src/context
diff options
context:
space:
mode:
Diffstat (limited to 'src/context')
-rw-r--r--src/context/context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/context.h b/src/context/context.h
index 92eb10441..d6b1c4701 100644
--- a/src/context/context.h
+++ b/src/context/context.h
@@ -136,7 +136,7 @@ public:
d_scope(d_context->getTopScope()) {
d_context->push();
}
- ~ScopedPush() {
+ ~ScopedPush() noexcept(false) {
d_context->pop();
AlwaysAssert(d_context->getTopScope() == d_scope,
"Context::ScopedPush observed an uneven Context (at pop, "
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback