From 20e35aa6f56bebd25863681e0406df4601e86a36 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 20 Jul 2008 05:32:09 -0400 Subject: I have walked further along the road less compiled by... --- journal.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'journal.h') diff --git a/journal.h b/journal.h index 86ae58fd..2f34b2d1 100644 --- a/journal.h +++ b/journal.h @@ -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 _note = none) + transaction_t(account_t * _account, + const amount_t& _amount, + unsigned int _flags = TRANSACTION_NORMAL, + const optional _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), -- cgit v1.2.3