Stream out item metadata last in item_t::serialize

This commit is contained in:
John Wiegley 2009-11-01 21:15:46 -05:00
parent 2ae2c47a38
commit 6a78c24463
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@
#include "xact.h"
#define LEDGER_MAGIC 0x4c454447
#define ARCHIVE_VERSION 0x03000002
#define ARCHIVE_VERSION 0x03000003
//BOOST_IS_ABSTRACT(ledger::scope_t)
BOOST_CLASS_EXPORT(ledger::scope_t)

View file

@ -207,8 +207,8 @@ private:
ar & _date;
ar & _date_eff;
ar & note;
ar & metadata;
ar & pos;
ar & metadata;
}
#endif // HAVE_BOOST_SERIALIZATION
};