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/commodity.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/commodity.h') diff --git a/src/commodity.h b/src/commodity.h index ab496850..37b02e74 100644 --- a/src/commodity.h +++ b/src/commodity.h @@ -349,6 +349,13 @@ inline std::ostream& operator<<(std::ostream& out, const commodity_t& comm) { void put_commodity(property_tree::ptree& pt, const commodity_t& comm, bool commodity_details = false); +//simple struct to allow std::map to compare commodities names +struct commodity_compare { + bool operator() (const commodity_t* lhs, const commodity_t* rhs){ + return (lhs->symbol().compare(rhs->symbol()) < 0); + } +}; + } // namespace ledger #endif // _COMMODITY_H -- cgit v1.2.3