From 67a598f6ff3b9b19b08af108c8bfe26064728457 Mon Sep 17 00:00:00 2001 From: Craig Earls Date: Mon, 7 Jan 2013 20:15:49 -0700 Subject: 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. --- src/output.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/output.h') 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 protected: report_t& report; - std::map accounts; + std::map accounts; typedef std::map::value_type accounts_pair; @@ -194,7 +194,7 @@ class report_commodities : public item_handler protected: report_t& report; - std::map commodities; + std::map commodities; typedef std::map::value_type commodities_pair; -- cgit v1.2.3