diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-15 06:28:30 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-15 06:28:30 -0400 |
commit | be91f38ab4ccdba6006106d45fd7061db2110470 (patch) | |
tree | 25874de7e90c34224c842e6b716ca9e82fe01028 /src/expr.cc | |
parent | f3bedb88b24ae8b2047ad86e57b161265c2812f5 (diff) | |
parent | 968a6f3c0ac4690a6fc74e8d84058bce91019c2e (diff) | |
download | fork-ledger-be91f38ab4ccdba6006106d45fd7061db2110470.tar.gz fork-ledger-be91f38ab4ccdba6006106d45fd7061db2110470.tar.bz2 fork-ledger-be91f38ab4ccdba6006106d45fd7061db2110470.zip |
Merge branch 'next'
Diffstat (limited to 'src/expr.cc')
-rw-r--r-- | src/expr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.cc b/src/expr.cc index defa5b79..0769d575 100644 --- a/src/expr.cc +++ b/src/expr.cc @@ -76,7 +76,7 @@ value_t expr_t::real_calc(scope_t& scope) try { return ptr->calc(scope, &locus); } - catch (const std::exception& err) { + catch (const std::exception&) { if (locus) { string current_context = error_context(); |