diff options
author | John Wiegley <johnw@newartisans.com> | 2019-07-05 13:10:51 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2019-07-05 13:10:51 -0700 |
commit | bb78c6e059a191814dcea1a31f97d40208248b97 (patch) | |
tree | 590fd3181804d0380aee174e005eb89dba8fe1fd /src/filters.cc | |
parent | 9ad0dcc85a3ec59a1dd23f36964d083cf59bd7a9 (diff) | |
download | fork-ledger-bb78c6e059a191814dcea1a31f97d40208248b97.tar.gz fork-ledger-bb78c6e059a191814dcea1a31f97d40208248b97.tar.bz2 fork-ledger-bb78c6e059a191814dcea1a31f97d40208248b97.zip |
Remove an unneeded comment
Diffstat (limited to 'src/filters.cc')
-rw-r--r-- | src/filters.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/filters.cc b/src/filters.cc index 8daf6700..98288880 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -894,16 +894,7 @@ void subtotal_posts::operator()(post_t& post) account_t * acct = post.reported_account(); assert(acct); -#if 0 - // jww (2012-04-06): The problem with doing this early is that - // fn_display_amount will recalculate this again. For example, if you - // use --invert, it will invert both here and in the display amount, - // effectively negating it. - bind_scope_t bound_scope(*amount_expr.get_context(), post); - value_t amount(amount_expr.calc(bound_scope)); -#else value_t amount(post.amount); -#endif post.xdata().compound_value = amount; post.xdata().add_flags(POST_EXT_COMPOUND); |