summaryrefslogtreecommitdiff
path: root/report.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2008-07-26 04:08:55 -0400
committerJohn Wiegley <johnw@newartisans.com>2008-07-26 04:08:55 -0400
commit961b30926b3b9f2b3e9c1a99df3f25fea6b13118 (patch)
treef0f5efcc0b63f337c4838b8aad46dea2cd7926e4 /report.h
parentee396957226e2273bc60ede7192c27038c432f24 (diff)
downloadledger-961b30926b3b9f2b3e9c1a99df3f25fea6b13118.tar.gz
ledger-961b30926b3b9f2b3e9c1a99df3f25fea6b13118.tar.bz2
ledger-961b30926b3b9f2b3e9c1a99df3f25fea6b13118.zip
--verify works again, but the memory totals at the end still need work.
Diffstat (limited to 'report.h')
-rw-r--r--report.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/report.h b/report.h
index 92a97457..7f3ada88 100644
--- a/report.h
+++ b/report.h
@@ -36,10 +36,10 @@
namespace ledger {
-typedef std::list<string> strings_list;
-
class report_t : public expr::symbol_scope_t
{
+ report_t();
+
public:
optional<path> output_file;
string format_string;
@@ -78,7 +78,9 @@ public:
#endif
}
- virtual ~report_t();
+ virtual ~report_t() throw() {
+ TRACE_DTOR(report_t);
+ }
void apply_transforms(expr::scope_t& scope);