diff options
author | John Wiegley <johnw@fpcomplete.com> | 2013-01-16 18:14:34 -0600 |
---|---|---|
committer | John Wiegley <johnw@fpcomplete.com> | 2013-01-16 18:14:34 -0600 |
commit | 9252c5f1f3d3e34998129be3f7e9f8521ae591f8 (patch) | |
tree | db2ef02d3ec17078fbea46d797d2277d893a1c66 /src/output.h | |
parent | d1c96190e9549267782704eab991bf304d3f86e2 (diff) | |
download | fork-ledger-9252c5f1f3d3e34998129be3f7e9f8521ae591f8.tar.gz fork-ledger-9252c5f1f3d3e34998129be3f7e9f8521ae591f8.tar.bz2 fork-ledger-9252c5f1f3d3e34998129be3f7e9f8521ae591f8.zip |
Revert "Bug551 fixed, commodities and accounts now sort"
This reverts commit 67a598f6ff3b9b19b08af108c8bfe26064728457.
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 5ce9dc58..281f69b6 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, account_compare> accounts; + std::map<account_t *, std::size_t> 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, commodity_compare> commodities; + std::map<commodity_t *, std::size_t> commodities; typedef std::map<commodity_t *, std::size_t>::value_type commodities_pair; |