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
path: root/base
diff options
context:
space:
mode:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2018-08-23 17:30:21 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2018-08-24 13:46:54 +0300
commite19041a3ad6860a96086896e32298182c800cf44 (patch)
treebdda0bc12db5c8a34759e65bb312a345a832b2c7 /base
parent32950ad239eee894e3d2c4e61ddcea8de472fb71 (diff)
Suppress warning for kReservedMask
Diffstat (limited to 'base')
-rw-r--r--base/geo_object_id.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/base/geo_object_id.cpp b/base/geo_object_id.cpp
index 8b7b3a3fc9..a465d447aa 100644
--- a/base/geo_object_id.cpp
+++ b/base/geo_object_id.cpp
@@ -1,6 +1,7 @@
#include "base/geo_object_id.hpp"
#include "base/assert.hpp"
+#include "base/macros.hpp"
#include <sstream>
@@ -70,6 +71,7 @@ GeoObjectId MakeOsmRelation(uint64_t id)
std::string DebugPrint(GeoObjectId::Type const & t)
{
+ UNUSED_VALUE(kReservedMask);
switch (t)
{
case GeoObjectId::Type::Invalid: return "Invalid";