diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-20 05:32:09 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-20 05:32:09 -0400 |
commit | 20e35aa6f56bebd25863681e0406df4601e86a36 (patch) | |
tree | b04f593db2ef34f80e2cb45eed80737efc22d6ae /journal.h | |
parent | 52fc9f2e4499e75d17e7f12d32a8391054d8634a (diff) | |
download | fork-ledger-20e35aa6f56bebd25863681e0406df4601e86a36.tar.gz fork-ledger-20e35aa6f56bebd25863681e0406df4601e86a36.tar.bz2 fork-ledger-20e35aa6f56bebd25863681e0406df4601e86a36.zip |
I have walked further along the road less compiled by...
Diffstat (limited to 'journal.h')
-rw-r--r-- | journal.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -73,17 +73,17 @@ class transaction_t : public supports_flags<> mutable void * data; static bool use_effective_date; - explicit transaction_t(account_t * _account = NULL) + transaction_t(account_t * _account = NULL) : supports_flags<>(TRANSACTION_NORMAL), entry(NULL), state(UNCLEARED), account(_account), beg_pos(0), beg_line(0), end_pos(0), end_line(0), data(NULL) { TRACE_CTOR(transaction_t, "account_t *"); } - explicit transaction_t(account_t * _account, - const amount_t& _amount, - unsigned int _flags = TRANSACTION_NORMAL, - const optional<string> _note = none) + transaction_t(account_t * _account, + const amount_t& _amount, + unsigned int _flags = TRANSACTION_NORMAL, + const optional<string> _note = none) : supports_flags<>(_flags), entry(NULL), state(UNCLEARED), account(_account), amount(_amount), note(_note), beg_pos(0), beg_line(0), end_pos(0), end_line(0), data(NULL) @@ -91,7 +91,7 @@ class transaction_t : public supports_flags<> TRACE_CTOR(transaction_t, "account_t *, const amount_t&, unsigned int, const string&"); } - explicit transaction_t(const transaction_t& xact) + transaction_t(const transaction_t& xact) : supports_flags<>(xact), entry(xact.entry), state(xact.state), |