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/std
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-06-24 15:47:00 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:33 +0300
commita2bbe7a4e180b996e73e183d53bc05f22618fa21 (patch)
tree3806d15f3450d9bfc8425991d17f5061bbc29c58 /std
parentd8eebb597792cc47564bb18d188be35232260506 (diff)
boost::hash -> std::hash
TODO: Should we improve current hash implementation/review do we really need unordered sets/maps?
Diffstat (limited to 'std')
-rw-r--r--std/functional.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/functional.hpp b/std/functional.hpp
index cc34502864..c1d5953d80 100644
--- a/std/functional.hpp
+++ b/std/functional.hpp
@@ -6,10 +6,10 @@
#endif
#include <functional>
-
using std::less;
using std::greater;
using std::equal_to;
+using std::hash;
#ifdef DEBUG_NEW
#define new DEBUG_NEW