summaryrefslogtreecommitdiff
path: root/src/pool.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-05-19 19:32:40 -0500
committerJohn Wiegley <johnw@newartisans.com>2012-05-20 04:48:05 -0500
commit4681e58d7f3cda2a2ac6d05b6ec1a106f568e029 (patch)
tree488d6531d688c68713baa5c1d70fb37be198b861 /src/pool.cc
parent303976e563608d8a1f4eb09ac5c9402ae5ce74fd (diff)
downloadfork-ledger-4681e58d7f3cda2a2ac6d05b6ec1a106f568e029.tar.gz
fork-ledger-4681e58d7f3cda2a2ac6d05b6ec1a106f568e029.tar.bz2
fork-ledger-4681e58d7f3cda2a2ac6d05b6ec1a106f568e029.zip
Converted the Ledger build system to use CMake
Diffstat (limited to 'src/pool.cc')
-rw-r--r--src/pool.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pool.cc b/src/pool.cc
index 61b5bef2..9f1aea9f 100644
--- a/src/pool.cc
+++ b/src/pool.cc
@@ -69,11 +69,11 @@ commodity_t * commodity_pool_t::create(const string& symbol)
DEBUG("pool.commodities", "Creating commodity '" << symbol << "'");
-#if defined(DEBUG_ON)
+#if DEBUG_ON
std::pair<commodities_map::iterator, bool> result =
#endif
commodities.insert(commodities_map::value_type(symbol, commodity));
-#if defined(DEBUG_ON)
+#if DEBUG_ON
assert(result.second);
#endif
@@ -206,13 +206,13 @@ commodity_pool_t::create(commodity_t& comm,
<< "symbol " << commodity->base_symbol()
<< std::endl << details);
-#if defined(DEBUG_ON)
+#if DEBUG_ON
std::pair<annotated_commodities_map::iterator, bool> result =
#endif
annotated_commodities.insert(annotated_commodities_map::value_type
(annotated_commodities_map::key_type
(comm.base_symbol(), details), commodity));
-#if defined(DEBUG_ON)
+#if DEBUG_ON
assert(result.second);
#endif
@@ -243,7 +243,7 @@ commodity_pool_t::exchange(const amount_t& amount,
{
DEBUG("commodity.prices.add", "exchange: " << amount << " for " << cost);
DEBUG("commodity.prices.add", "exchange: is-per-unit = " << is_per_unit);
-#if defined(DEBUG_ON)
+#if DEBUG_ON
if (moment)
DEBUG("commodity.prices.add", "exchange: moment = " << *moment);
if (tag)