diff options
author | Craig Earls <enderw88@gmail.com> | 2013-01-29 10:03:47 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-01-29 10:03:47 -0700 |
commit | f9da94c909c57f416bec0266dd20b931f556a7a9 (patch) | |
tree | b60ee5f61492df15cb4124fcbca841e15d3810ef /src/output.h | |
parent | 5d1971ee51a18f927185d20fb0a4426d8f08aa86 (diff) | |
download | fork-ledger-f9da94c909c57f416bec0266dd20b931f556a7a9.tar.gz fork-ledger-f9da94c909c57f416bec0266dd20b931f556a7a9.tar.bz2 fork-ledger-f9da94c909c57f416bec0266dd20b931f556a7a9.zip |
Fixes bug 514. accounts and commodities output now sorts
updated tests included.
Diffstat (limited to 'src/output.h')
-rw-r--r-- | src/output.h | 4 |
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; |