diff options
author | John Wiegley <johnw@newartisans.com> | 2009-01-29 18:23:57 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-01-29 18:23:57 -0400 |
commit | 05c77351e458c08873c813264005f61f828b5383 (patch) | |
tree | fa83d3826d8c113b5ec273671ce6cab3d9fe5388 /src/xact.h | |
parent | 119b5dc1975bfc00fb3f376e6ba28594dee12583 (diff) | |
download | fork-ledger-05c77351e458c08873c813264005f61f828b5383.tar.gz fork-ledger-05c77351e458c08873c813264005f61f828b5383.tar.bz2 fork-ledger-05c77351e458c08873c813264005f61f828b5383.zip |
Stopped using the generic "unsigned int" in favor of more specific types.
Diffstat (limited to 'src/xact.h')
-rw-r--r-- | src/xact.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -114,13 +114,13 @@ public: #define XACT_EXT_COMPOUND 0x40 #define XACT_EXT_MATCHES 0x80 - value_t total; - value_t sort_value; - value_t value; - unsigned int index; - date_t date; - account_t * account; - void * ptr; + value_t total; + value_t sort_value; + value_t value; + std::size_t index; + date_t date; + account_t * account; + void * ptr; optional<xacts_list> component_xacts; |