summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
authorCraig Earls <enderw88@gmail.com>2013-10-30 06:40:17 -0700
committerCraig Earls <enderw88@gmail.com>2013-10-30 06:40:17 -0700
commitd7d442135b4d472775533686f07174ffa63301e8 (patch)
tree1d83046ec47e6ac5c76299752b5bf6ad6a08b274 /src/account.h
parentde5cc279141b341cd224edd529a79e01191649f9 (diff)
downloadfork-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/account.h')
-rw-r--r--src/account.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account.h b/src/account.h
index daeee038..b726facf 100644
--- a/src/account.h
+++ b/src/account.h
@@ -310,7 +310,7 @@ void put_account(property_tree::ptree& pt, const account_t& acct,
//simple struct added to allow std::map to compare accounts in the accounts report
struct account_compare {
- bool operator() (const account_t& lhs, const account_t& rhs){
+ bool operator() (const account_t& lhs, const account_t& rhs) const {
return (lhs.fullname().compare(rhs.fullname()) < 0);
}
};