diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-18 01:01:30 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-18 01:01:30 -0500 |
commit | f9088f88360019bb4be8743dd8091036502adb9c (patch) | |
tree | 8a4fe8e1bba0ccc65a1809874ebbd249577fba57 /src/temps.h | |
parent | e7d26d53cfc73cc706a6b4903f5c5d6641bdeae8 (diff) | |
download | fork-ledger-f9088f88360019bb4be8743dd8091036502adb9c.tar.gz fork-ledger-f9088f88360019bb4be8743dd8091036502adb9c.tar.bz2 fork-ledger-f9088f88360019bb4be8743dd8091036502adb9c.zip |
Added --verify-memory and missing TRACE_[CD]TOR calls
Diffstat (limited to 'src/temps.h')
-rw-r--r-- | src/temps.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/temps.h b/src/temps.h index ad4e5672..f41c487c 100644 --- a/src/temps.h +++ b/src/temps.h @@ -51,7 +51,11 @@ class temporaries_t optional<std::list<account_t> > acct_temps; public: + temporaries_t() { + TRACE_CTOR(temporaries_t, ""); + } ~temporaries_t() { + TRACE_DTOR(temporaries_t); clear(); } |