summaryrefslogtreecommitdiff
path: root/src/commodity.h
diff options
context:
space:
mode:
authorCraig Earls <enderw88@gmail.com>2013-11-06 08:48:54 -0700
committerCraig Earls <enderw88@gmail.com>2013-11-06 08:48:54 -0700
commit1db0b0892c2e382cd2f437434f8338861740e0dd (patch)
tree85c4277a61f594066ac4f1553852bf2d6e8718bd /src/commodity.h
parent52228e7cc15fd87abe234e92b7c2da15c2abf5a6 (diff)
parentd51e6f32d7c16f0d6760df6f8d83cd18db55c597 (diff)
downloadfork-ledger-1db0b0892c2e382cd2f437434f8338861740e0dd.tar.gz
fork-ledger-1db0b0892c2e382cd2f437434f8338861740e0dd.tar.bz2
fork-ledger-1db0b0892c2e382cd2f437434f8338861740e0dd.zip
Merge branch 'master' into ledger-mode-automatic-transactions
Diffstat (limited to 'src/commodity.h')
-rw-r--r--src/commodity.h2
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);
}
};