diff options
author | John Wiegley <johnw@newartisans.com> | 2012-08-16 08:51:08 -0700 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-08-16 08:51:08 -0700 |
commit | 608d27a7743a0cf3431808dd144b855b2a99d075 (patch) | |
tree | d49e8d287f7345533544ede3c35ac9b9644dca21 /src/report.h | |
parent | bb9ba01cd2b566024055da1e352923c0f5d9037b (diff) | |
parent | 73aa585efae21cf596996f76330834a83da299ac (diff) | |
download | fork-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.h | 2 |
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) { |