diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-10 20:09:26 -1000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-17 15:09:33 -0600 |
commit | c90027eef97abfc41938daee5f5110d8ecdd6689 (patch) | |
tree | aa3b3a32feb4212a13cf2adaec9408d03872a246 /src/csv.cc | |
parent | 68fa8600ee90a5f0364f3ef8566a3ef3293d7bf9 (diff) | |
download | fork-ledger-c90027eef97abfc41938daee5f5110d8ecdd6689.tar.gz fork-ledger-c90027eef97abfc41938daee5f5110d8ecdd6689.tar.bz2 fork-ledger-c90027eef97abfc41938daee5f5110d8ecdd6689.zip |
Changed a use of int to std::vector<int>::size_type
Diffstat (limited to 'src/csv.cc')
-rw-r--r-- | src/csv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -163,7 +163,7 @@ xact_t * csv_reader::read_xact(journal_t& journal, account_t * bucket) post->set_state(item_t::CLEARED); post->account = NULL; - int n = 0; + std::vector<int>::size_type n = 0; amount_t amt; string total; |