diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-04 20:55:40 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-04 20:57:14 -0400 |
commit | 3f960be96c47cc976ed3a4d9e477325b6a3fcfb7 (patch) | |
tree | 2d0b5a844bc47ff3bb90797114f89531b933c982 /src/item.h | |
parent | 066aef6090d5801e9e8452692c2478320dad48d3 (diff) | |
download | fork-ledger-3f960be96c47cc976ed3a4d9e477325b6a3fcfb7.tar.gz fork-ledger-3f960be96c47cc976ed3a4d9e477325b6a3fcfb7.tar.bz2 fork-ledger-3f960be96c47cc976ed3a4d9e477325b6a3fcfb7.zip |
Removed all references to the old binary cache.
Diffstat (limited to 'src/item.h')
-rw-r--r-- | src/item.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -60,9 +60,8 @@ class item_t : public supports_flags<>, public scope_t { public: #define ITEM_NORMAL 0x00 // no flags at all, a basic transaction -#define ITEM_IN_CACHE 0x01 // transaction allocated by the binary cache -#define ITEM_GENERATED 0x02 // transaction was not found in a journal -#define ITEM_TEMP 0x04 // transaction is a temporary object +#define ITEM_GENERATED 0x01 // transaction was not found in a journal +#define ITEM_TEMP 0x02 // transaction is a temporary object enum state_t { UNCLEARED = 0, CLEARED, PENDING }; |