From 555e953dc17038039cf0bc253ef74b961de0b0f2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 9 Feb 2009 14:54:58 -0400 Subject: [PATCH] Was failing to copy over the xact's assigned_amount when copy constructing. --- src/xact.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xact.h b/src/xact.h index 5beb4d9c..315c8f21 100644 --- a/src/xact.h +++ b/src/xact.h @@ -98,6 +98,7 @@ public: account(xact.account), amount(xact.amount), cost(xact.cost), + assigned_amount(xact.assigned_amount), xdata_(xact.xdata_) // jww (2008-07-19): What are the copy semantics? { TRACE_CTOR(xact_t, "copy");