diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-13 01:48:32 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-13 01:48:32 -0500 |
commit | 2986bc779e055fe8bd3511994c539d65d3a7aa57 (patch) | |
tree | 71a93ea1eaf17901ebf89fe0556e87ab7ec6db50 /src/value.cc | |
parent | f50ea971ef12929d015657f22942b1cc0e328165 (diff) | |
download | fork-ledger-2986bc779e055fe8bd3511994c539d65d3a7aa57.tar.gz fork-ledger-2986bc779e055fe8bd3511994c539d65d3a7aa57.tar.bz2 fork-ledger-2986bc779e055fe8bd3511994c539d65d3a7aa57.zip |
Stylistic change: assert(0) -> assert(false)
Diffstat (limited to 'src/value.cc')
-rw-r--r-- | src/value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.cc b/src/value.cc index 910a9140..ce852c2d 100644 --- a/src/value.cc +++ b/src/value.cc @@ -696,7 +696,7 @@ value_t& value_t::operator/=(const value_t& val) as_amount_lval() /= simpler.as_amount(); break; default: - assert(0); + assert(false); break; } return *this; |