Boost logo

Boost-Commit :

From: daniel_james_at_[hidden]
Date: 2008-05-08 17:42:57


Author: danieljames
Date: 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
New Revision: 45231
URL: http://svn.boost.org/trac/boost/changeset/45231

Log:
Replace some non-ASCII characters in the interprocess library headers.
Text files modified:
   trunk/boost/interprocess/containers/flat_map.hpp | 4 ++--
   trunk/boost/interprocess/containers/flat_set.hpp | 4 ++--
   trunk/boost/interprocess/containers/map.hpp | 4 ++--
   trunk/boost/interprocess/containers/set.hpp | 4 ++--
   trunk/boost/interprocess/errors.hpp | 2 +-
   trunk/boost/interprocess/smart_ptr/unique_ptr.hpp | 14 +++++++-------
   6 files changed, 16 insertions(+), 16 deletions(-)

Modified: trunk/boost/interprocess/containers/flat_map.hpp
==============================================================================
--- trunk/boost/interprocess/containers/flat_map.hpp (original)
+++ trunk/boost/interprocess/containers/flat_map.hpp 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
@@ -210,7 +210,7 @@
       { return value_compare(force<key_compare>(m_flat_tree.key_comp())); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the object’s constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const
@@ -853,7 +853,7 @@
       { return value_compare(force<key_compare>(m_flat_tree.key_comp())); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the object’s constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const

Modified: trunk/boost/interprocess/containers/flat_set.hpp
==============================================================================
--- trunk/boost/interprocess/containers/flat_set.hpp (original)
+++ trunk/boost/interprocess/containers/flat_set.hpp 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
@@ -157,7 +157,7 @@
       { return m_flat_tree.key_comp(); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the object’s constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const
@@ -665,7 +665,7 @@
       { return m_flat_tree.key_comp(); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the object’s constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const

Modified: trunk/boost/interprocess/containers/map.hpp
==============================================================================
--- trunk/boost/interprocess/containers/map.hpp (original)
+++ trunk/boost/interprocess/containers/map.hpp 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
@@ -206,7 +206,7 @@
    { return value_compare(m_tree.key_comp()); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the objects constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const
@@ -856,7 +856,7 @@
    { return value_compare(m_tree.key_comp()); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the objects constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const

Modified: trunk/boost/interprocess/containers/set.hpp
==============================================================================
--- trunk/boost/interprocess/containers/set.hpp (original)
+++ trunk/boost/interprocess/containers/set.hpp 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
@@ -183,7 +183,7 @@
    { return m_tree.key_comp(); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the object’s constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const
@@ -672,7 +672,7 @@
    { return m_tree.key_comp(); }
 
    //! <b>Effects</b>: Returns a copy of the Allocator that
- //! was passed to the object’s constructor.
+ //! was passed to the object's constructor.
    //!
    //! <b>Complexity</b>: Constant.
    allocator_type get_allocator() const

Modified: trunk/boost/interprocess/errors.hpp
==============================================================================
--- trunk/boost/interprocess/errors.hpp (original)
+++ trunk/boost/interprocess/errors.hpp 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
@@ -11,7 +11,7 @@
 //////////////////////////////////////////////////////////////////////////////
 //
 // Copyright (c) 2002 Beman Dawes
-// Copyright (c) 2001 Dietmar Kühl
+// Copyright (c) 2001 Dietmar Kuehl
 // Use, modification, and distribution is subject to the Boost Software
 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy
 // at http://www.boost.org/LICENSE_1_0.txt)

Modified: trunk/boost/interprocess/smart_ptr/unique_ptr.hpp
==============================================================================
--- trunk/boost/interprocess/smart_ptr/unique_ptr.hpp (original)
+++ trunk/boost/interprocess/smart_ptr/unique_ptr.hpp 2008-05-08 17:42:56 EDT (Thu, 08 May 2008)
@@ -138,11 +138,11 @@
    //!
    //!Effects: Constructs a unique_ptr which owns the pointer which u owns
    //!(if any). If the deleter is not a reference type, it is move constructed
- //!from u’s deleter, otherwise the reference is copy constructed from u’s deleter.
+ //!from u's deleter, otherwise the reference is copy constructed from u's deleter.
    //!
    //!After the construction, u no longer owns a pointer.
    //![ Note: The deleter constructor can be implemented with
- //!std::forward<D>. —end note ]
+ //!std::forward<D>. -end note ]
    //!
    //!Postconditions: get() == value u.get() had before the construction.
    //!get_deleter() returns a reference to the internally stored deleter which
@@ -168,8 +168,8 @@
    //!
    //!Effects: Constructs a unique_ptr which owns the pointer which u owns
    //!(if any). If the deleter is not a reference
- //!type, it is move constructed from u’s deleter, otherwise the reference
- //!is copy constructed from u’s deleter.
+ //!type, it is move constructed from u's deleter, otherwise the reference
+ //!is copy constructed from u's deleter.
    //!
    //!After the construction, u no longer owns a pointer.
    //!
@@ -221,7 +221,7 @@
 
    //!Requires: Assignment of the deleter D from an rvalue D must not throw an exception.
    //!
- //!Effects: reset(u.release()) followed by a move assignment from u’s deleter to
+ //!Effects: reset(u.release()) followed by a move assignment from u's deleter to
    //!this deleter.
    //!
    //!Postconditions: This unique_ptr now owns the pointer which u owned, and u no
@@ -250,7 +250,7 @@
    //!throw an exception. U* must be implicitly convertible to T*.
    //!
    //!Effects: reset(u.release()) followed by a move assignment from
- //!u’s deleter to this deleter. If either D or E is
+ //!u's deleter to this deleter. If either D or E is
    //!a reference type, then the referenced lvalue deleter participates
    //!in the move assignment.
    //!
@@ -356,7 +356,7 @@
 
    //!Requires: The deleter D is Swappable and will not throw an exception under swap.
    //!
- //!Effects: The stored pointers of this and u are exchanged. The stored deleters are swap’d (unqualified).
+ //!Effects: The stored pointers of this and u are exchanged. The stored deleters are swap'd (unqualified).
    //!
    //!Throws: nothing.
    #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE


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