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:
Diffstat (limited to 'base/base_tests/threads_test.cpp')
-rw-r--r--base/base_tests/threads_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/base_tests/threads_test.cpp b/base/base_tests/threads_test.cpp
index e482cd55bb..98933c7682 100644
--- a/base/base_tests/threads_test.cpp
+++ b/base/base_tests/threads_test.cpp
@@ -20,7 +20,7 @@ struct GeneratorThread : public threads::IRoutine
{
for (size_t i = 0; i < MAX_COUNT; ++i)
{
- m_vec.push_back(i);
+ m_vec.push_back(static_cast<int>(i));
summ += i;
}
}