diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-09 16:30:00 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-09 16:30:00 -0400 |
commit | 2dc822291f3ecef34eb0ef2920c395b0e056fbda (patch) | |
tree | 23cfa31eecb31fe01eea410471f2dc53d4dac140 | |
parent | 59c0692233812eeba568dac735d7b4d4576cf30a (diff) | |
download | fork-ledger-2dc822291f3ecef34eb0ef2920c395b0e056fbda.tar.gz fork-ledger-2dc822291f3ecef34eb0ef2920c395b0e056fbda.tar.bz2 fork-ledger-2dc822291f3ecef34eb0ef2920c395b0e056fbda.zip |
fixed < bug
-rw-r--r-- | balance.h | 6 | ||||
-rw-r--r-- | valexpr.cc | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -217,6 +217,9 @@ class balance_t if (! ((*i).second < bal.amount((*i).first))) return false; + if (bal.amounts.size() == 0 && amounts.size() == 0) + return false; + return true; } bool operator<=(const balance_t& bal) const { @@ -254,6 +257,9 @@ class balance_t if (! ((*i).second > bal.amount((*i).first))) return false; + if (bal.amounts.size() == 0 && amounts.size() == 0) + return false; + return true; } bool operator>=(const balance_t& bal) const { @@ -269,6 +269,7 @@ void node_t::compute(balance_t& result, const details_t& details) const assert(right); left->compute(result, details); balance_t temp = result; + result = 0; right->compute(result, details); switch (type) { case O_EQ: result = temp == result; break; @@ -289,6 +290,7 @@ void node_t::compute(balance_t& result, const details_t& details) const assert(right); right->compute(result, details); balance_t temp = result; + result = 0; left->compute(result, details); switch (type) { case O_ADD: result += temp; break; |