diff options
author | Craig Earls <enderw88@gmail.com> | 2013-11-06 08:48:54 -0700 |
---|---|---|
committer | Craig Earls <enderw88@gmail.com> | 2013-11-06 08:48:54 -0700 |
commit | 1db0b0892c2e382cd2f437434f8338861740e0dd (patch) | |
tree | 85c4277a61f594066ac4f1553852bf2d6e8718bd /src/account.h | |
parent | 52228e7cc15fd87abe234e92b7c2da15c2abf5a6 (diff) | |
parent | d51e6f32d7c16f0d6760df6f8d83cd18db55c597 (diff) | |
download | fork-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/account.h')
-rw-r--r-- | src/account.h | 2 |
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); } }; |