From 59a080cdb6bafa6ab20cb20c1bf1f007ea64de84 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 1 Feb 2009 18:33:46 -0400 Subject: Changed many uses of "unsigned long" to std::size_t. --- src/quotes.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/quotes.h') diff --git a/src/quotes.h b/src/quotes.h index 60eac63b..a18836f4 100644 --- a/src/quotes.h +++ b/src/quotes.h @@ -58,19 +58,19 @@ namespace ledger { */ class quotes_by_script : public noncopyable, public commodity_t::base_t::updater_t { - string price_db; - unsigned long pricing_leeway; - bool& cache_dirty; + string price_db; + std::size_t pricing_leeway; + bool& cache_dirty; quotes_by_script(); public: - quotes_by_script(path _price_db, - unsigned long _pricing_leeway, - bool& _cache_dirty) + 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) { - TRACE_CTOR(quotes_by_script, "path, unsigned long, bool&"); + TRACE_CTOR(quotes_by_script, "path, std::size_t, bool&"); } ~quotes_by_script() throw() { TRACE_DTOR(quotes_by_script); -- cgit v1.2.3