diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-28 04:54:54 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-28 04:54:54 -0400 |
commit | 38122c22241cb8fe64f0d17cd3b084418f49edaa (patch) | |
tree | 9383f2082602f2d71dde5328fa8bcf3f6609a5b7 /src/format.h | |
parent | fb129fa7a1b293d3a04513aee3ca4a489f094754 (diff) | |
download | fork-ledger-38122c22241cb8fe64f0d17cd3b084418f49edaa.tar.gz fork-ledger-38122c22241cb8fe64f0d17cd3b084418f49edaa.tar.bz2 fork-ledger-38122c22241cb8fe64f0d17cd3b084418f49edaa.zip |
Corrected warnings g++-4.3.3 was complaining about
Diffstat (limited to 'src/format.h')
-rw-r--r-- | src/format.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/format.h b/src/format.h index 8df2dd1e..df757eeb 100644 --- a/src/format.h +++ b/src/format.h @@ -69,11 +69,11 @@ class format_t : public noncopyable EXPR, }; - kind_t type; - unsigned char min_width; - unsigned char max_width; - string chars; - expr_t expr; + kind_t type; + std::size_t min_width; + std::size_t max_width; + string chars; + expr_t expr; scoped_ptr<struct element_t> next; |