summaryrefslogtreecommitdiff
path: root/src/report.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-08-16 08:51:08 -0700
committerJohn Wiegley <johnw@newartisans.com>2012-08-16 08:51:08 -0700
commit608d27a7743a0cf3431808dd144b855b2a99d075 (patch)
treed49e8d287f7345533544ede3c35ac9b9644dca21 /src/report.h
parentbb9ba01cd2b566024055da1e352923c0f5d9037b (diff)
parent73aa585efae21cf596996f76330834a83da299ac (diff)
downloadfork-ledger-608d27a7743a0cf3431808dd144b855b2a99d075.tar.gz
fork-ledger-608d27a7743a0cf3431808dd144b855b2a99d075.tar.bz2
fork-ledger-608d27a7743a0cf3431808dd144b855b2a99d075.zip
Merge pull request #74 from hwright/next
Fix a couple of compilation warnings
Diffstat (limited to 'src/report.h')
-rw-r--r--src/report.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/report.h b/src/report.h
index 0f4fc103..4a02843e 100644
--- a/src/report.h
+++ b/src/report.h
@@ -123,7 +123,7 @@ public:
TRACE_CTOR(report_t, "session_t&");
}
report_t(const report_t& report)
- : session(report.session),
+ : scope_t(report), session(report.session),
output_stream(report.output_stream),
terminus(report.terminus),
budget_flags(report.budget_flags) {