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:
gfgtdf 2015-04-10 00:29:09 +02:00 committed by Ignacio R. Morelle
parent 8b72d6c764
commit b79a88d05c

View file

@ -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>