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 {
|
namespace ledger {
|
||||||
|
|
||||||
xact_base_t::xact_base_t(const xact_base_t&)
|
xact_base_t::xact_base_t(const xact_base_t& xact_base)
|
||||||
: item_t(), journal(NULL)
|
: item_t(xact_base), journal(xact_base.journal)
|
||||||
{
|
{
|
||||||
TRACE_CTOR(xact_base_t, "copy");
|
TRACE_CTOR(xact_base_t, "copy");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue