diff options
author | John Wiegley <johnw@newartisans.com> | 2006-03-03 09:45:44 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:41:28 -0400 |
commit | 96d6d62ad94082ca777c2c88b88e0346a5d00e65 (patch) | |
tree | b50a26a9c4c0cc0ab90b1772cc75368739501fa5 /valexpr.h | |
parent | 7d3e45958e805f8acaf399ef14d53757979240ab (diff) | |
download | fork-ledger-96d6d62ad94082ca777c2c88b88e0346a5d00e65.tar.gz fork-ledger-96d6d62ad94082ca777c2c88b88e0346a5d00e65.tar.bz2 fork-ledger-96d6d62ad94082ca777c2c88b88e0346a5d00e65.zip |
Began support for improved commodity handling.
Diffstat (limited to 'valexpr.h')
-rw-r--r-- | valexpr.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -349,7 +349,7 @@ public: } virtual ~value_expr() { DEBUG_PRINT("ledger.memory.dtors", "dtor value_expr"); - if (parsed != NULL) + if (parsed) parsed->release(); } @@ -363,12 +363,12 @@ extern std::auto_ptr<value_calc> amount_expr; extern std::auto_ptr<value_calc> total_expr; inline void compute_amount(value_t& result, const details_t& details) { - if (amount_expr.get() != NULL) + if (amount_expr.get()) amount_expr->compute(result, details); } inline void compute_total(value_t& result, const details_t& details) { - if (total_expr.get() != NULL) + if (total_expr.get()) total_expr->compute(result, details); } |