diff options
author | John Wiegley <johnw@fpcomplete.com> | 2013-01-16 18:14:34 -0600 |
---|---|---|
committer | John Wiegley <johnw@fpcomplete.com> | 2013-01-16 18:14:34 -0600 |
commit | 9252c5f1f3d3e34998129be3f7e9f8521ae591f8 (patch) | |
tree | db2ef02d3ec17078fbea46d797d2277d893a1c66 /src/account.h | |
parent | d1c96190e9549267782704eab991bf304d3f86e2 (diff) | |
download | fork-ledger-9252c5f1f3d3e34998129be3f7e9f8521ae591f8.tar.gz fork-ledger-9252c5f1f3d3e34998129be3f7e9f8521ae591f8.tar.bz2 fork-ledger-9252c5f1f3d3e34998129be3f7e9f8521ae591f8.zip |
Revert "Bug551 fixed, commodities and accounts now sort"
This reverts commit 67a598f6ff3b9b19b08af108c8bfe26064728457.
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/account.h b/src/account.h index 3642ada0..a2fcb8de 100644 --- a/src/account.h +++ b/src/account.h @@ -308,13 +308,6 @@ std::ostream& operator<<(std::ostream& out, const account_t& account); void put_account(property_tree::ptree& pt, const account_t& acct, function<bool(const account_t&)> pred); -//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){ - return (lhs.fullname().compare(rhs.fullname()) < 0); - } -}; - } // namespace ledger #endif // _ACCOUNT_H |