diff options
author | akater <nuclearspace@gmail.com> | 2020-03-03 01:13:39 +0000 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2020-03-03 11:39:05 +0800 |
commit | 7c09f45f501a8ae6573d62e833c4ddfe4ab8b3aa (patch) | |
tree | 243e447f15223e192d01d3f10385182d33299732 /src/journal.h | |
parent | 6e76222373100ef9dd0e2f12cef683a691c5c8ff (diff) | |
download | fork-ledger-7c09f45f501a8ae6573d62e833c4ddfe4ab8b3aa.tar.gz fork-ledger-7c09f45f501a8ae6573d62e833c4ddfe4ab8b3aa.tar.bz2 fork-ledger-7c09f45f501a8ae6573d62e833c4ddfe4ab8b3aa.zip |
Specify namespace of uintmax_t
This fixes #1833 for me. @jwiegley said it's reasonable change, and
nobody else took action so here it goes.
The patch is the same as proposed originally, modulo whitespace.
Diffstat (limited to 'src/journal.h')
-rw-r--r-- | src/journal.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/journal.h b/src/journal.h index 3fefe4e1..0b0c7850 100644 --- a/src/journal.h +++ b/src/journal.h @@ -77,10 +77,10 @@ class journal_t : public noncopyable public: struct fileinfo_t { - optional<path> filename; - uintmax_t size; - datetime_t modtime; - bool from_stream; + optional<path> filename; + boost::uintmax_t size; + datetime_t modtime; + bool from_stream; fileinfo_t() : size(0), from_stream(true) { TRACE_CTOR(journal_t::fileinfo_t, ""); |