diff options
author | Hyrum Wright <hyrum@hyrumwright.org> | 2012-08-14 01:23:32 -0400 |
---|---|---|
committer | Hyrum Wright <hyrum@hyrumwright.org> | 2012-08-14 01:23:32 -0400 |
commit | 73aa585efae21cf596996f76330834a83da299ac (patch) | |
tree | e6e8a8f0a6373fb127938c3f06f26a4e18027154 /src/history.h | |
parent | 6ccb5e96873716086e6d86a491df862627de5451 (diff) | |
download | fork-ledger-73aa585efae21cf596996f76330834a83da299ac.tar.gz fork-ledger-73aa585efae21cf596996f76330834a83da299ac.tar.bz2 fork-ledger-73aa585efae21cf596996f76330834a83da299ac.zip |
Fix compilation warning: ensure a destructor is properly defined to avoid
compiler confusion.
Diffstat (limited to 'src/history.h')
-rw-r--r-- | src/history.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/history.h b/src/history.h index 4362c9f9..b763cb0b 100644 --- a/src/history.h +++ b/src/history.h @@ -88,6 +88,7 @@ public: const datetime_t& oldest = datetime_t()); void print_map(std::ostream& out, const datetime_t& moment = datetime_t()); + ~commodity_history_t(); }; } // namespace ledger |