From 1f7ced99204f2cec3acf16820cacb80f7ab6e4a6 Mon Sep 17 00:00:00 2001 From: khizmax Date: Tue, 11 Nov 2014 21:46:14 +0300 Subject: [PATCH] remove unused boost dependencies --- cds/lock/array.h | 3 +-- cds/opt/hash.h | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) 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 { -- 2.34.1