summaryrefslogtreecommitdiff
path: root/src/commodity.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@fpcomplete.com>2013-01-16 18:14:34 -0600
committerJohn Wiegley <johnw@fpcomplete.com>2013-01-16 18:14:34 -0600
commit9252c5f1f3d3e34998129be3f7e9f8521ae591f8 (patch)
treedb2ef02d3ec17078fbea46d797d2277d893a1c66 /src/commodity.h
parentd1c96190e9549267782704eab991bf304d3f86e2 (diff)
downloadfork-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/commodity.h')
-rw-r--r--src/commodity.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/commodity.h b/src/commodity.h
index 37b02e74..ab496850 100644
--- a/src/commodity.h
+++ b/src/commodity.h
@@ -349,13 +349,6 @@ inline std::ostream& operator<<(std::ostream& out, const commodity_t& comm) {
void put_commodity(property_tree::ptree& pt, const commodity_t& comm,
bool commodity_details = false);
-//simple struct to allow std::map to compare commodities names
-struct commodity_compare {
- bool operator() (const commodity_t* lhs, const commodity_t* rhs){
- return (lhs->symbol().compare(rhs->symbol()) < 0);
- }
-};
-
} // namespace ledger
#endif // _COMMODITY_H