summaryrefslogtreecommitdiff
path: root/src/output.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-01-29 09:36:03 -0800
committerJohn Wiegley <johnw@newartisans.com>2013-01-29 09:36:03 -0800
commit1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c (patch)
treea3ab9b26047500e8a4582e3715ecfead19389b3c /src/output.h
parent69001d927afd1fa8fa4ed121591505e34d253c04 (diff)
parentf9da94c909c57f416bec0266dd20b931f556a7a9 (diff)
downloadfork-ledger-1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c.tar.gz
fork-ledger-1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c.tar.bz2
fork-ledger-1e709d1040eb2c10f7ab0ea80e903c12fcb0f35c.zip
Merge pull request #132 from enderw88/bug514-sort-accounts-and-commodities
Fixes bug 514. accounts and commodities output now sorts
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 9895cb44..44eca2d2 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;
@@ -221,7 +221,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;