From c69e254f3b18886e14fd827627b7be84d172a9be Mon Sep 17 00:00:00 2001 From: khizmax Date: Thu, 25 Sep 2014 23:04:49 +0400 Subject: [PATCH] Using std::hash as default hash functor in cds --- cds/opt/hash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cds/opt/hash.h b/cds/opt/hash.h index bd407195..982cdfd3 100644 --- a/cds/opt/hash.h +++ b/cds/opt/hash.h @@ -30,7 +30,7 @@ namespace cds { namespace opt { namespace v { //@cond - using cds::details::hash; + using std::hash; /// Metafunction selecting default hash implementation /** @@ -45,7 +45,7 @@ namespace cds { namespace opt { template struct hash_selector { - typedef Hash type ; ///< resulting implementation of hash functor + typedef Hash type; ///< resulting implementation of hash functor }; template <> -- 2.34.1