From bc8665dd5651cf4e78f2849fce1ec6ef44782ccf Mon Sep 17 00:00:00 2001 From: khizmax Date: Wed, 18 Jan 2017 00:07:07 +0300 Subject: [PATCH] Fixed doxygen comments --- cds/algo/atomic.h | 2 +- cds/container/impl/feldman_hashmap.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cds/algo/atomic.h b/cds/algo/atomic.h index 8cb74bad..c27f7033 100644 --- a/cds/algo/atomic.h +++ b/cds/algo/atomic.h @@ -121,7 +121,7 @@ namespace cds { Returns \p n. */ value_type operator =( - value_type n //< new value of the counter + value_type n ///< new value of the counter ) CDS_NOEXCEPT { m_counter.exchange( n, atomics::memory_order_relaxed ); diff --git a/cds/container/impl/feldman_hashmap.h b/cds/container/impl/feldman_hashmap.h index dc74e420..7ac74a03 100644 --- a/cds/container/impl/feldman_hashmap.h +++ b/cds/container/impl/feldman_hashmap.h @@ -356,8 +356,8 @@ namespace cds { namespace container { public: /// Creates empty map /** - @param head_bits: 2head_bits specifies the size of head array, minimum is 4. - @param array_bits: 2array_bits specifies the size of array node, minimum is 2. + @param head_bits - 2head_bits specifies the size of head array, minimum is 4. + @param array_bits - 2array_bits specifies the size of array node, minimum is 2. Equation for \p head_bits and \p array_bits: \code -- 2.34.1