From e19041a3ad6860a96086896e32298182c800cf44 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Thu, 23 Aug 2018 17:30:21 +0300 Subject: [PATCH] Suppress warning for kReservedMask --- base/geo_object_id.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 @@ -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";