From: khizmax Date: Tue, 11 Nov 2014 18:46:14 +0000 (+0300) Subject: remove unused boost dependencies X-Git-Tag: v2.0.0~112 X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=commitdiff_plain;h=1f7ced99204f2cec3acf16820cacb80f7ab6e4a6 remove unused boost dependencies --- diff --git a/cds/lock/array.h b/cds/lock/array.h index ff8db6b8..64b92937 100644 --- a/cds/lock/array.h +++ b/cds/lock/array.h @@ -6,7 +6,6 @@ #include //unique_lock #include #include -#include namespace cds { namespace lock { @@ -91,7 +90,7 @@ namespace cds { namespace lock { can be simultaneous. Template arguments: - - \p Lock - lock type, for example, \p boost::mutex, \p cds::lock::Spinlock + - \p Lock - lock type, for example, \p std::mutex, \p cds::lock::Spinlock - \p SelectPolicy - array cell selection policy, the default is \ref mod_select_policy Available policies: \ref trivial_select_policy, \ref pow2_select_policy, \ref mod_select_policy. - \p Alloc - memory allocator for array diff --git a/cds/opt/hash.h b/cds/opt/hash.h index 2c457f79..882f6440 100644 --- a/cds/opt/hash.h +++ b/cds/opt/hash.h @@ -15,8 +15,6 @@ namespace cds { namespace opt { The default value of template argument \p Functor is \p cds::opt::v::hash that is synonym for std::hash implementation of standard library. - If standard C++ library of the compiler you use does not provide TR1 implementation - the \p cds library automatically selects boost::hash. */ template struct hash {