From d7d442135b4d472775533686f07174ffa63301e8 Mon Sep 17 00:00:00 2001 From: Craig Earls Date: Wed, 30 Oct 2013 06:40:17 -0700 Subject: And const directives in account.h and commodity.h to allow build in OS X Mavericks. --- src/commodity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commodity.h') diff --git a/src/commodity.h b/src/commodity.h index a1988a3b..d521d80e 100644 --- a/src/commodity.h +++ b/src/commodity.h @@ -353,7 +353,7 @@ void put_commodity(property_tree::ptree& pt, const commodity_t& comm, //simple struct to allow std::map to compare commodities names struct commodity_compare { - bool operator() (const commodity_t* lhs, const commodity_t* rhs){ + bool operator() (const commodity_t* lhs, const commodity_t* rhs) const { return (lhs->symbol().compare(rhs->symbol()) < 0); } }; -- cgit v1.2.3