Fixed copy constructors for transactions
This commit is contained in:
parent
caff01ba75
commit
52d1441646
1 changed files with 2 additions and 2 deletions
|
|
@ -39,8 +39,8 @@
|
|||
|
||||
namespace ledger {
|
||||
|
||||
xact_base_t::xact_base_t(const xact_base_t&)
|
||||
: item_t(), journal(NULL)
|
||||
xact_base_t::xact_base_t(const xact_base_t& xact_base)
|
||||
: item_t(xact_base), journal(xact_base.journal)
|
||||
{
|
||||
TRACE_CTOR(xact_base_t, "copy");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue