From: khizmax Date: Sun, 26 Mar 2017 08:20:35 +0000 (+0300) Subject: Docfix X-Git-Tag: v2.3.0~88 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6e5f25c98077d24d1e1f5ca093f927d26c5774af;p=libcds.git Docfix --- diff --git a/cds/intrusive/details/base.h b/cds/intrusive/details/base.h index 3dea55d1..51189679 100644 --- a/cds/intrusive/details/base.h +++ b/cds/intrusive/details/base.h @@ -40,12 +40,12 @@ namespace cds { /// Intrusive containers /** @ingroup cds_intrusive_containers - The namespace cds::intrusive contains intrusive lock-free containers. + The namespace \p cds::intrusive contains intrusive lock-free containers. The idea comes from \p boost::intrusive library, see http://boost.org/doc/ as a good introduction to intrusive approach. The intrusive containers of libcds library is developed as close to \p boost::intrusive In terms of lock-free approach, the main advantage of intrusive containers is - that no memory allocation is performed to maintain container items. + that no memory allocation is performed to maintain container elements. However, additional requirements are imposed for types and values that can be stored in intrusive container. See the container documentation for details.