summaryrefslogtreecommitdiff
path: root/src/amount.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-03-11 03:55:25 -0500
committerJohn Wiegley <johnw@newartisans.com>2012-03-11 03:55:25 -0500
commit363670d35bf451ff8ce636c071da73a0d93c514a (patch)
tree153899e85596849bcbe96c820d5d55bbc61f1d8b /src/amount.h
parent2303aa993cf41ad5bde8f8f5722bd265c11e3aa7 (diff)
downloadfork-ledger-363670d35bf451ff8ce636c071da73a0d93c514a.tar.gz
fork-ledger-363670d35bf451ff8ce636c071da73a0d93c514a.tar.bz2
fork-ledger-363670d35bf451ff8ce636c071da73a0d93c514a.zip
Tighten up argument passing related to fn_market()
Diffstat (limited to 'src/amount.h')
-rw-r--r--src/amount.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/amount.h b/src/amount.h
index 7bf4fe51..903a01cd 100644
--- a/src/amount.h
+++ b/src/amount.h
@@ -404,8 +404,8 @@ public:
$100.00.
*/
optional<amount_t>
- value(const optional<datetime_t>& moment = none,
- const optional<commodity_t&>& in_terms_of = none) const;
+ value(const datetime_t& moment = datetime_t(),
+ const commodity_t * in_terms_of = NULL) const;
optional<amount_t> price() const;
@@ -534,7 +534,9 @@ public:
useful for accessing just the numeric portion of an amount.
*/
commodity_t * commodity_ptr() const;
- commodity_t& commodity() const;
+ commodity_t& commodity() const {
+ return *commodity_ptr();
+ }
bool has_commodity() const;
void set_commodity(commodity_t& comm) {