diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-20 21:17:26 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-20 21:17:26 -0400 |
commit | 219cc71bb038c0e2ef75c9dcc609e50513fd91a4 (patch) | |
tree | ff891cb6c6ed62b7eab45afc625efe355dcfa74b /journal.h | |
parent | b85e9ba95f215c12575417fdfc95fbdcad4de550 (diff) | |
download | fork-ledger-219cc71bb038c0e2ef75c9dcc609e50513fd91a4.tar.gz fork-ledger-219cc71bb038c0e2ef75c9dcc609e50513fd91a4.tar.bz2 fork-ledger-219cc71bb038c0e2ef75c9dcc609e50513fd91a4.zip |
Things are at least compiling and linking again, but we're still far from
having a functional binary.
Diffstat (limited to 'journal.h')
-rw-r--r-- | journal.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -252,7 +252,9 @@ class auto_entry_t : public entry_base_t public: item_predicate<transaction_t> predicate; - auto_entry_t(); + auto_entry_t() { + TRACE_CTOR(auto_entry_t, ""); + } auto_entry_t(const string& _predicate) : predicate(_predicate) { |