fixup 20e9706c11
that commit changed uintmax_t to be 4 bytes long instead of 8 bytes long in windows which makes us uncapable to read files >4GB. boost::filesystem::file_size retrun type is boost::uintmax_t so we don't need to include files for this line.
This commit is contained in:
parent
8b72d6c764
commit
b79a88d05c
1 changed files with 1 additions and 5 deletions
|
@ -31,11 +31,7 @@
|
|||
#include <boost/iostreams/stream.hpp>
|
||||
#include <set>
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER <= 1500)
|
||||
typedef unsigned long int uintmax_t;
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
using boost::uintmax_t;
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <boost/locale.hpp>
|
||||
|
|
Loading…
Add table
Reference in a new issue