summaryrefslogtreecommitdiff
path: root/src/filters.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2015-05-11 09:42:20 -0500
committerJohn Wiegley <johnw@newartisans.com>2015-05-11 09:42:20 -0500
commit2e02e0862f1029cf72a8713643dcb7892598e5fa (patch)
tree1d43be6a3bba7b3c5f631ebf09ac48d6af9cb484 /src/filters.cc
parentc586e1e494487c43cf6da886739f69bb91a7e15b (diff)
parent68c9d649caa2c7c7f222613efe86576c379a5a7a (diff)
downloadfork-ledger-2e02e0862f1029cf72a8713643dcb7892598e5fa.tar.gz
fork-ledger-2e02e0862f1029cf72a8713643dcb7892598e5fa.tar.bz2
fork-ledger-2e02e0862f1029cf72a8713643dcb7892598e5fa.zip
Merge pull request #417 from kljohann/boost
build fixes for boost 1.58
Diffstat (limited to 'src/filters.cc')
-rw-r--r--src/filters.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters.cc b/src/filters.cc
index 2f97a0e5..b6530c04 100644
--- a/src/filters.cc
+++ b/src/filters.cc
@@ -707,7 +707,7 @@ namespace {
insert_prices_in_map(price_map_t& _all_prices)
: all_prices(_all_prices) {}
- void operator()(datetime_t& date, const amount_t& price) {
+ void operator()(const datetime_t& date, const amount_t& price) {
all_prices.insert(price_map_t::value_type(date, price));
}
};