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:
authorSergey Yershov <yershov@corp.mail.ru>2015-03-17 16:04:42 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:39:56 +0300
commit3848db2389318c41b7c29a74cf9e5f2ba7e331dc (patch)
treed2716c5a3d833c768dd4f94b22944c1fee18f822 /indexer/data_header.cpp
parenta97b51a6aaa759dc584f6f133d7aeee739aad62c (diff)
fixed warning in [indexer]
Diffstat (limited to 'indexer/data_header.cpp')
-rw-r--r--indexer/data_header.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/data_header.cpp b/indexer/data_header.cpp
index a6f2c413bf..c07ed87de7 100644
--- a/indexer/data_header.cpp
+++ b/indexer/data_header.cpp
@@ -59,7 +59,7 @@ namespace feature
{
STATIC_ASSERT(sizeof(typename TCont::value_type) == 1);
- uint32_t const count = cont.size();
+ uint32_t const count = static_cast<uint32_t>(cont.size());
WriteVarUint(sink, count);
if (count > 0)
sink.Write(&cont[0], count);