summaryrefslogtreecommitdiff
path: root/src/quotes.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-04 20:55:40 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-04 20:57:14 -0400
commit3f960be96c47cc976ed3a4d9e477325b6a3fcfb7 (patch)
tree2d0b5a844bc47ff3bb90797114f89531b933c982 /src/quotes.h
parent066aef6090d5801e9e8452692c2478320dad48d3 (diff)
downloadfork-ledger-3f960be96c47cc976ed3a4d9e477325b6a3fcfb7.tar.gz
fork-ledger-3f960be96c47cc976ed3a4d9e477325b6a3fcfb7.tar.bz2
fork-ledger-3f960be96c47cc976ed3a4d9e477325b6a3fcfb7.zip
Removed all references to the old binary cache.
Diffstat (limited to 'src/quotes.h')
-rw-r--r--src/quotes.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/quotes.h b/src/quotes.h
index a18836f4..caf159ce 100644
--- a/src/quotes.h
+++ b/src/quotes.h
@@ -60,16 +60,13 @@ class quotes_by_script : public noncopyable, public commodity_t::base_t::updater
{
string price_db;
std::size_t pricing_leeway;
- bool& cache_dirty;
quotes_by_script();
public:
quotes_by_script(path _price_db,
- std::size_t _pricing_leeway,
- bool& _cache_dirty)
- : price_db(_price_db), pricing_leeway(_pricing_leeway),
- cache_dirty(_cache_dirty) {
+ std::size_t _pricing_leeway)
+ : price_db(_price_db), pricing_leeway(_pricing_leeway) {
TRACE_CTOR(quotes_by_script, "path, std::size_t, bool&");
}
~quotes_by_script() throw() {