🔨 fixed a warning in MSVC

This commit is contained in:
Niels Lohmann 2017-03-28 22:10:24 +02:00
parent 6b12e40478
commit 19d119e18c
No known key found for this signature in database
GPG key ID: 7F3CEA63AE251B69

View file

@ -10323,7 +10323,7 @@ class basic_json
// refill
is.read(reinterpret_cast<char*>(buffer.data()), static_cast<std::streamsize>(buffer.size()));
// set unfilled characters to EOF
std::fill_n(buffer.begin() + is.gcount(),
std::fill_n(buffer.begin() + static_cast<int>(is.gcount()),
buffer.size() - static_cast<size_t>(is.gcount()),
std::char_traits<char>::eof());
// the buffer is ready