diff options
author | Craig Earls <enderw88@gmail.com> | 2013-01-07 20:15:49 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-01-07 20:15:49 -0700 |
commit | 67a598f6ff3b9b19b08af108c8bfe26064728457 (patch) | |
tree | 300f91a73c6610c718cf69e1f532d040494d2d35 /src/output.h | |
parent | 63a14fd5e0aeb64a0508ddac71803acc926425c5 (diff) | |
download | fork-ledger-67a598f6ff3b9b19b08af108c8bfe26064728457.tar.gz fork-ledger-67a598f6ff3b9b19b08af108c8bfe26064728457.tar.bz2 fork-ledger-67a598f6ff3b9b19b08af108c8bfe26064728457.zip |
Bug551 fixed, commodities and accounts now sort
Added two compare structs for std::map to use. I tried to override
the < operator got a clean compile but map wasn't picking it up, I
couldn't figure out why so I took the less elegant route.
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; |