forked from organicmaps/organicmaps
Fix uint64_t -> size_t warning.
This commit is contained in:
parent
5067c87fa6
commit
cadfc18b85
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ UNIT_TEST(BuildIndexTest)
|
|||
if (tags[i] != INDEX_FILE_TAG)
|
||||
{
|
||||
FileReader reader = originalContainer.GetReader(tags[i]);
|
||||
uint64_t const sz = reader.Size();
|
||||
size_t const sz = static_cast<size_t>(reader.Size());
|
||||
if (sz > 0)
|
||||
{
|
||||
vector<char> data(sz);
|
||||
|
|
Loading…
Add table
Reference in a new issue