summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-04 06:02:00 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-04 06:02:00 -0400
commitb848ace76866188701a6a704a9531c4eeb2bc71a (patch)
tree6fdb3e1cf8a8239c89c03907447a08402bef391b /src/parser.h
parentf16a5382ed9a9750c69595e5752f80e39cf7a4b8 (diff)
downloadfork-ledger-b848ace76866188701a6a704a9531c4eeb2bc71a.tar.gz
fork-ledger-b848ace76866188701a6a704a9531c4eeb2bc71a.tar.bz2
fork-ledger-b848ace76866188701a6a704a9531c4eeb2bc71a.zip
Allow opt -NDEBUG build to complete without warnings
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index aab48830..2693fc79 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -61,10 +61,16 @@ class expr_t::parser_t : public noncopyable
return lookahead;
}
+#if !defined(NO_ASSERTS)
void push_token(const token_t& tok) const {
assert(&tok == &lookahead);
use_lookahead = true;
}
+#else
+ void push_token(const token_t&) const {
+ use_lookahead = true;
+ }
+#endif // !defined(NO_ASSERTS)
void push_token() const {
use_lookahead = true;
}