diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-01 18:33:46 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-01 18:33:46 -0400 |
commit | 59a080cdb6bafa6ab20cb20c1bf1f007ea64de84 (patch) | |
tree | 99ee6bdb62d3e3fdedfaa494723e4a48ec8ec6e4 /src/item.h | |
parent | 9f579902fb6b30cac426110dfd3faa55017b552b (diff) | |
download | fork-ledger-59a080cdb6bafa6ab20cb20c1bf1f007ea64de84.tar.gz fork-ledger-59a080cdb6bafa6ab20cb20c1bf1f007ea64de84.tar.bz2 fork-ledger-59a080cdb6bafa6ab20cb20c1bf1f007ea64de84.zip |
Changed many uses of "unsigned long" to std::size_t.
Diffstat (limited to 'src/item.h')
-rw-r--r-- | src/item.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -73,10 +73,14 @@ public: optional<string> note; unsigned short src_idx; + istream_pos_type full_beg_pos; + std::size_t full_beg_line; istream_pos_type beg_pos; - unsigned long beg_line; + std::size_t beg_line; istream_pos_type end_pos; - unsigned long end_line; + std::size_t end_line; + istream_pos_type full_end_pos; + std::size_t full_end_line; static bool use_effective_date; |