forked from organicmaps/organicmaps
[indexer] Fix maximum byte value inside indexer code, to support MSVC 2013.
This commit is contained in:
parent
bc8a38a402
commit
a6b96a8b2a
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ namespace feature
|
|||
template <class ArchiveT> void DeserializeFromMWM(ArchiveT & ar)
|
||||
{
|
||||
uint8_t header[2] = {0};
|
||||
char buffer[numeric_limits<uint8_t>::max()] = {0};
|
||||
char buffer[uint8_t(-1)] = {0};
|
||||
do
|
||||
{
|
||||
ar.Read(header, sizeof(header));
|
||||
|
|
Loading…
Add table
Reference in a new issue