diff options
author | John Wiegley <johnw@newartisans.com> | 2012-05-20 15:25:10 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-05-20 15:25:10 -0500 |
commit | 2345f48094a71b2611fc48452f9076ba1506e241 (patch) | |
tree | 0af2c8821f8463d654b01834d8b8bd95e9373a68 /src/amount.cc | |
parent | 1b1c7cd4ac9efe9f44b31513a33dc68bf6ee1924 (diff) | |
download | fork-ledger-2345f48094a71b2611fc48452f9076ba1506e241.tar.gz fork-ledger-2345f48094a71b2611fc48452f9076ba1506e241.tar.bz2 fork-ledger-2345f48094a71b2611fc48452f9076ba1506e241.zip |
Changed all ASSERTS_ON -> !NO_ASSERTS
Diffstat (limited to 'src/amount.cc')
-rw-r--r-- | src/amount.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amount.cc b/src/amount.cc index 9491efcd..6ecb3558 100644 --- a/src/amount.cc +++ b/src/amount.cc @@ -900,7 +900,7 @@ void amount_t::annotate(const annotation_t& details) if (commodity_t * ann_comm = this_base->pool().find_or_create(*this_base, details)) set_commodity(*ann_comm); -#ifdef ASSERTS_ON +#if !NO_ASSERTS else assert(false); #endif |