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/output.cc | |
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/output.cc')
-rw-r--r-- | src/output.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/output.cc b/src/output.cc index a641bae9..372981ab 100644 --- a/src/output.cc +++ b/src/output.cc @@ -177,12 +177,12 @@ void format_accounts::operator()(account_t& account) bool format_accounts::disp_subaccounts_p(account_t& account, account_t *& to_show) { - bool display = false; - unsigned int counted = 0; - bool matches = should_display(account); - bool computed = false; - value_t acct_total; - value_t result; + bool display = false; + std::size_t counted = 0; + bool matches = should_display(account); + bool computed = false; + value_t acct_total; + value_t result; to_show = NULL; |