Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2014-10-14 13:14:55 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:30:57 +0300
commit0ddcff0b07566260e1e00990f70555110fb5cfa7 (patch)
tree32d542f1b9d9f6dcdc4e800b4ac5b3d6ee62b2c8 /drape/symbols_texture.cpp
parent9ad4f6585c45443815b7ab9a691a7c47eefe6012 (diff)
[msvc][win] Fixed compilation issues
Diffstat (limited to 'drape/symbols_texture.cpp')
-rw-r--r--drape/symbols_texture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape/symbols_texture.cpp b/drape/symbols_texture.cpp
index e118efc77c..6ca2f73627 100644
--- a/drape/symbols_texture.cpp
+++ b/drape/symbols_texture.cpp
@@ -138,7 +138,7 @@ void SymbolsTexture::Load(string const & skinPathName)
{
ReaderPtr<Reader> reader = GetPlatform().GetReader(skinPathName + ".png");
- uint64_t size = reader.Size();
+ size_t const size = reader.Size();
rawData.resize(size);
reader.Read(0, &rawData[0], size);
}