diff options
author | Craig Earls <enderw88@gmail.com> | 2011-10-06 22:07:01 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2011-10-06 22:07:01 -0700 |
commit | b400d65be082165f44e769605aa6a78133cf6d9a (patch) | |
tree | 27b18ee35a5c4f60a10cf4f626e15ac30276040b /src/xact.cc | |
parent | e9ccb012c2c5ffe0e9f4916ee859bda95d9d4248 (diff) | |
parent | f0791bbd7297e737d9e13d0b0bb21473b173b2a7 (diff) | |
download | fork-ledger-b400d65be082165f44e769605aa6a78133cf6d9a.tar.gz fork-ledger-b400d65be082165f44e769605aa6a78133cf6d9a.tar.bz2 fork-ledger-b400d65be082165f44e769605aa6a78133cf6d9a.zip |
Merge remote branch 'upstream/next' into next
Diffstat (limited to 'src/xact.cc')
-rw-r--r-- | src/xact.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xact.cc b/src/xact.cc index 1acbd0a4..7f0b1afe 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -192,7 +192,7 @@ bool xact_base_t::finalize() DEBUG("xact.finalize", "there were no costs, and a valid top_post"); balance_t::amounts_map::const_iterator a = bal.amounts.begin(); - + const amount_t * x = &(*a++).second; const amount_t * y = &(*a++).second; @@ -418,7 +418,7 @@ bool xact_base_t::verify() amount_t& p(post->cost ? *post->cost : post->amount); assert(! p.is_null()); - + // If the amount was a cost, it very likely has the "keep_precision" flag // set, meaning commodity display precision is ignored when displaying the // amount. We never want this set for the balance, so we must clear the @@ -609,7 +609,7 @@ namespace { .match(post.reported_account()->fullname()); else break; - + case expr_t::op_t::O_NOT: return ! post_pred(op->left(), post); |