diff options
author | Craig Earls <enderw88@gmail.com> | 2013-10-30 06:40:17 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-10-30 06:40:17 -0700 |
commit | d7d442135b4d472775533686f07174ffa63301e8 (patch) | |
tree | 1d83046ec47e6ac5c76299752b5bf6ad6a08b274 /src/commodity.h | |
parent | de5cc279141b341cd224edd529a79e01191649f9 (diff) | |
download | fork-ledger-d7d442135b4d472775533686f07174ffa63301e8.tar.gz fork-ledger-d7d442135b4d472775533686f07174ffa63301e8.tar.bz2 fork-ledger-d7d442135b4d472775533686f07174ffa63301e8.zip |
And const directives in account.h and commodity.h to allow build in OS X Mavericks.
Diffstat (limited to 'src/commodity.h')
-rw-r--r-- | src/commodity.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); } }; |