Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71468 - sandbox/mm_ptr/boost
From: phil_at_[hidden]
Date: 2011-04-24 20:10:46


Author: pbouchard
Date: 2011-04-24 20:10:46 EDT (Sun, 24 Apr 2011)
New Revision: 71468
URL: http://svn.boost.org/trac/boost/changeset/71468

Log:
* Comment fix
Text files modified:
   sandbox/mm_ptr/boost/mm_ptr.hpp | 16 ++++++++--------
   1 files changed, 8 insertions(+), 8 deletions(-)

Modified: sandbox/mm_ptr/boost/mm_ptr.hpp
==============================================================================
--- sandbox/mm_ptr/boost/mm_ptr.hpp (original)
+++ sandbox/mm_ptr/boost/mm_ptr.hpp 2011-04-24 20:10:46 EDT (Sun, 24 Apr 2011)
@@ -61,12 +61,12 @@
 class mm_header
 {
     long count_; /**< Count of the number of pointers from the stack referencing the same @c mm_header .*/
- mutable mm_header * redir_; /**< Redirection in the case of an union multiple @c mm_header s.*/
+ mutable mm_header * redir_; /**< Redirection in the case of an union multiple sets.*/
 
- intrusive_list includes_; /**< List of all @c mm_header s of an union. */
+ intrusive_list includes_; /**< List of all sets of an union. */
     intrusive_list elements_; /**< List of all pointee objects belonging to a @c mm_header . */
 
- static fast_pool_allocator<mm_header> pool_; /**< Pool where all @c mm_header s are allocated. */
+ static fast_pool_allocator<mm_header> pool_; /**< Pool where all sets are allocated. */
 
 public:
         bool destroy_; /**< Destruction sequence initiated. */
@@ -84,7 +84,7 @@
         
         
         /**
- Release of a @c mm_header with possible destruction of all its elements and other @c mm_header s unified to it.
+ Release of a @c mm_header with possible destruction of all its elements and other sets unified to it.
                 
                 @return True if the @c mm_header was released.
         */
@@ -149,7 +149,7 @@
 
         
         /**
- Finds the elements constituting one or many @c mm_header s unified.
+ Finds the elements constituting one or many sets unified.
                 
                 @return List of all elements.
         */
@@ -302,7 +302,7 @@
 
 
                 /**
- Assignment & union of 2 @c mm_header s if the pointee resides a different @c mm_header.
+ Assignment & union of 2 sets if the pointee resides a different @c mm_header.
                         
                         @param p New pointee object to manage.
                 */
@@ -321,7 +321,7 @@
 
 
                 /**
- Assignment & union of 2 @c mm_header s if the pointee resides a different @c mm_header.
+ Assignment & union of 2 sets if the pointee resides a different @c mm_header.
                         
                         @param p New pointer to manage.
                 */
@@ -342,7 +342,7 @@
 
 
                 /**
- Assignment & union of 2 @c mm_header s if the pointee resides a different @c mm_header.
+ Assignment & union of 2 sets if the pointee resides a different @c mm_header.
                         
                         @param p New pointer to manage.
                 */


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk