diff options
author | John Wiegley <johnw@newartisans.com> | 2008-07-31 04:28:58 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-07-31 04:28:58 -0400 |
commit | 8276b51f5692796bfdf75dd64f709e0de1c7caaf (patch) | |
tree | 8f2a964080d2ee7e90400e158d3f89e9ffdbfa75 /binary.h | |
parent | 208c414ab9600eca4852034a923418948629ced0 (diff) | |
download | fork-ledger-8276b51f5692796bfdf75dd64f709e0de1c7caaf.tar.gz fork-ledger-8276b51f5692796bfdf75dd64f709e0de1c7caaf.tar.bz2 fork-ledger-8276b51f5692796bfdf75dd64f709e0de1c7caaf.zip |
A new binary_cache_t object has been creating to manage saving and restoring a
Ledger session from a cache file. It doesn't work at all yet, though at least
the major structures are in place now.
Diffstat (limited to 'binary.h')
-rw-r--r-- | binary.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -264,11 +264,6 @@ void write_long(std::ostream& out, T num) void write_string(std::ostream& out, const string& str); void write_string(std::ostream& out, const optional<string>& str); -template <typename T> -inline void write_object(std::ostream& out, const T& journal) { - assert(false); -} - } // namespace binary } // namespace ledger |