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:
authorAlex Zolotarev <alex@maps.me>2015-06-24 15:49:13 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:34 +0300
commitd7dfd870746a3e89ade642fd7d2605e753bbdafd (patch)
treee7430de05332b7d0834f9c6670cb8616604ed315 /std/unordered_set.hpp
parent7afc128a29c5a290f34e4f7aafcbe0e80bb09f50 (diff)
std folder cleanup & removing not needed boost references.
Diffstat (limited to 'std/unordered_set.hpp')
-rw-r--r--std/unordered_set.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/unordered_set.hpp b/std/unordered_set.hpp
index 2377ed7f2a..8fb84a9e7b 100644
--- a/std/unordered_set.hpp
+++ b/std/unordered_set.hpp
@@ -1,12 +1,12 @@
#pragma once
-#include "common_defines.hpp"
#ifdef new
#undef new
#endif
-#include <boost/unordered_set.hpp>
-using boost::unordered_set;
+#include <unordered_set>
+using std::unordered_set;
+using std::unordered_multiset;
#ifdef DEBUG_NEW
#define new DEBUG_NEW