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:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-06-06 15:40:04 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2017-06-06 15:40:04 +0300
commitbfa9478db6722b5f2acc92b8962b9e54ef067676 (patch)
tree4ddd396fbf546489d8804bf5fa5161c7ba7fd48b /indexer/wheelchair.hpp
parent4871e2f7f48fd690f3e923797130b62e9e1a8bde (diff)
review fixes
Diffstat (limited to 'indexer/wheelchair.hpp')
-rw-r--r--indexer/wheelchair.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/indexer/wheelchair.hpp b/indexer/wheelchair.hpp
index a1029fca59..815094f186 100644
--- a/indexer/wheelchair.hpp
+++ b/indexer/wheelchair.hpp
@@ -1,9 +1,12 @@
#pragma once
#include "indexer/feature.hpp"
+#include "indexer/feature_data.hpp"
#include "indexer/ftypes_mapping.hpp"
+#include <cstdint>
#include <initializer_list>
+#include <string>
namespace wheelchair
{
@@ -14,7 +17,7 @@ enum class Type
Limited
};
-inline string DebugPrint(Type wheelchair)
+inline std::string DebugPrint(Type wheelchair)
{
switch (wheelchair)
{
@@ -22,7 +25,6 @@ inline string DebugPrint(Type wheelchair)
case Type::Yes: return "Yes";
case Type::Limited: return "Limited";
}
- return {};
}
class Matcher