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:
authorYuri Gorshenin <y@mmaps.me>2015-04-08 13:25:57 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:45:11 +0300
commitf9d0921c64710aad14433b13f91b62c36089ac83 (patch)
treed7e940ab8180929a71a65ae1066309a36942bdf2 /map/benchmark_tool
parentb6922be52642a46524fd0dd5e55bb7b989e638ef (diff)
[indexer] Fixed compile warnings on Index::Register() calls.
Diffstat (limited to 'map/benchmark_tool')
-rw-r--r--map/benchmark_tool/features_loading.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/map/benchmark_tool/features_loading.cpp b/map/benchmark_tool/features_loading.cpp
index 957006104a..4e979bfb7e 100644
--- a/map/benchmark_tool/features_loading.cpp
+++ b/map/benchmark_tool/features_loading.cpp
@@ -9,9 +9,9 @@
#include "../../platform/platform.hpp"
+#include "../../base/macros.hpp"
#include "../../base/timer.hpp"
-
namespace bench
{
@@ -110,7 +110,7 @@ void RunFeaturesLoadingBenchmark(string const & file, pair<int, int> scaleR, All
return;
model::FeaturesFetcher src;
- src.RegisterMap(file);
+ UNUSED_VALUE(src.RegisterMap(file));
RunBenchmark(src, header.GetBounds(), scaleR, res);
}