summaryrefslogtreecommitdiff
path: root/src/output.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-01-16 12:18:33 -0800
committerJohn Wiegley <johnw@newartisans.com>2013-01-16 12:18:33 -0800
commit6ff7dac73f78e885637b2827457ac5e4acfded67 (patch)
tree61e53a8960a3dbd54f3ba11e3361525c506430de /src/output.h
parentd922f4659570c87a06352b0da9d877f047ec442c (diff)
parent855432c4cd32b03b0751cffb0e215f2ceefdc6e5 (diff)
downloadfork-ledger-6ff7dac73f78e885637b2827457ac5e4acfded67.tar.gz
fork-ledger-6ff7dac73f78e885637b2827457ac5e4acfded67.tar.bz2
fork-ledger-6ff7dac73f78e885637b2827457ac5e4acfded67.zip
Merge pull request #122 from enderw88/Lisp-fixes
Fix ledger-add-entry
Diffstat (limited to 'src/output.h')
-rw-r--r--src/output.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output.h b/src/output.h
index 281f69b6..5ce9dc58 100644
--- a/src/output.h
+++ b/src/output.h
@@ -142,7 +142,7 @@ class report_accounts : public item_handler<post_t>
protected:
report_t& report;
- std::map<account_t *, std::size_t> accounts;
+ std::map<account_t *, std::size_t, account_compare> accounts;
typedef std::map<account_t *, std::size_t>::value_type accounts_pair;
@@ -194,7 +194,7 @@ class report_commodities : public item_handler<post_t>
protected:
report_t& report;
- std::map<commodity_t *, std::size_t> commodities;
+ std::map<commodity_t *, std::size_t, commodity_compare> commodities;
typedef std::map<commodity_t *, std::size_t>::value_type commodities_pair;