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/editor
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2018-09-24 16:09:30 +0300
committerAleksey Belousov <beloal@users.noreply.github.com>2018-09-25 11:56:55 +0300
commit3cc4b54ad9ffa17d14dd3a5d0b0e7f11644ca578 (patch)
treed22f78d5747d3d2343bc4b6581281e03153ebe76 /editor
parentc85aa17a61f1803f9dd8877542f4d7518a434474 (diff)
[strings_types] review fixes
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_tests/new_feature_categories_test.cpp2
-rw-r--r--editor/new_feature_categories.hpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/editor/editor_tests/new_feature_categories_test.cpp b/editor/editor_tests/new_feature_categories_test.cpp
index e629cc6350..ddc86a5e57 100644
--- a/editor/editor_tests/new_feature_categories_test.cpp
+++ b/editor/editor_tests/new_feature_categories_test.cpp
@@ -32,7 +32,7 @@ UNIT_TEST(NewFeatureCategories_UniqueNames)
continue;
categories.AddLanguage(lang);
auto names = categories.GetAllCreatableTypeNames();
-
+ std::sort(names.begin(), names.end());
auto result = std::unique(names.begin(), names.end());
if (result != names.end())
diff --git a/editor/new_feature_categories.hpp b/editor/new_feature_categories.hpp
index b72bfbc3d0..fb2110c89d 100644
--- a/editor/new_feature_categories.hpp
+++ b/editor/new_feature_categories.hpp
@@ -10,7 +10,6 @@
#include "std/cstdint.hpp"
#include "std/string.hpp"
-#include "std/unordered_set.hpp"
#include "std/vector.hpp"
namespace osm