From: khizmax Date: Thu, 25 Sep 2014 19:04:49 +0000 (+0400) Subject: Using std::hash as default hash functor in cds X-Git-Tag: v2.0.0~288 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c69e254f3b18886e14fd827627b7be84d172a9be;p=libcds.git Using std::hash as default hash functor in cds --- 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 <>