diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-04 06:02:00 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-04 06:02:00 -0400 |
commit | b848ace76866188701a6a704a9531c4eeb2bc71a (patch) | |
tree | 6fdb3e1cf8a8239c89c03907447a08402bef391b /src/op.cc | |
parent | f16a5382ed9a9750c69595e5752f80e39cf7a4b8 (diff) | |
download | fork-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/op.cc')
-rw-r--r-- | src/op.cc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -78,10 +78,12 @@ expr_t::ptr_op_t expr_t::op_t::compile(scope_t& scope, const int depth) // Identifier references are first looked up at the point of // definition, and then at the point of every use if they could // not be found there. +#if defined(DEBUG_ON) if (SHOW_DEBUG("expr.compile")) { DEBUG("expr.compile", "Found definition:"); def->dump(*_log_stream, 0); } +#endif // defined(DEBUG_ON) return copy(def); } else if (left()) { |