summaryrefslogtreecommitdiff
path: root/src/xact.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-29 18:23:57 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-29 18:23:57 -0400
commit05c77351e458c08873c813264005f61f828b5383 (patch)
treefa83d3826d8c113b5ec273671ce6cab3d9fe5388 /src/xact.h
parent119b5dc1975bfc00fb3f376e6ba28594dee12583 (diff)
downloadfork-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.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xact.h b/src/xact.h
index 0fcb430e..22690ac3 100644
--- a/src/xact.h
+++ b/src/xact.h
@@ -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;