|
Boost-Commit : |
From: daniel_james_at_[hidden]
Date: 2008-05-05 16:29:13
Author: danieljames
Date: 2008-05-05 16:29:12 EDT (Mon, 05 May 2008)
New Revision: 45154
URL: http://svn.boost.org/trac/boost/changeset/45154
Log:
Remove non-ascii characters from interprocess headers - was causing problems in the generated xml.
Text files modified:
branches/doc/boost/interprocess/containers/flat_map.hpp | 4 ++--
branches/doc/boost/interprocess/containers/flat_set.hpp | 4 ++--
branches/doc/boost/interprocess/containers/map.hpp | 4 ++--
branches/doc/boost/interprocess/containers/set.hpp | 4 ++--
branches/doc/boost/interprocess/errors.hpp | 2 +-
branches/doc/boost/interprocess/smart_ptr/unique_ptr.hpp | 14 +++++++-------
6 files changed, 16 insertions(+), 16 deletions(-)
Modified: branches/doc/boost/interprocess/containers/flat_map.hpp
==============================================================================
--- branches/doc/boost/interprocess/containers/flat_map.hpp (original)
+++ branches/doc/boost/interprocess/containers/flat_map.hpp 2008-05-05 16:29:12 EDT (Mon, 05 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 objects 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 objects constructor.
+ //! was passed to the object's constructor.
//!
//! <b>Complexity</b>: Constant.
allocator_type get_allocator() const
Modified: branches/doc/boost/interprocess/containers/flat_set.hpp
==============================================================================
--- branches/doc/boost/interprocess/containers/flat_set.hpp (original)
+++ branches/doc/boost/interprocess/containers/flat_set.hpp 2008-05-05 16:29:12 EDT (Mon, 05 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 objects 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 objects constructor.
+ //! was passed to the object's constructor.
//!
//! <b>Complexity</b>: Constant.
allocator_type get_allocator() const
Modified: branches/doc/boost/interprocess/containers/map.hpp
==============================================================================
--- branches/doc/boost/interprocess/containers/map.hpp (original)
+++ branches/doc/boost/interprocess/containers/map.hpp 2008-05-05 16:29:12 EDT (Mon, 05 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: branches/doc/boost/interprocess/containers/set.hpp
==============================================================================
--- branches/doc/boost/interprocess/containers/set.hpp (original)
+++ branches/doc/boost/interprocess/containers/set.hpp 2008-05-05 16:29:12 EDT (Mon, 05 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 objects 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 objects constructor.
+ //! was passed to the object's constructor.
//!
//! <b>Complexity</b>: Constant.
allocator_type get_allocator() const
Modified: branches/doc/boost/interprocess/errors.hpp
==============================================================================
--- branches/doc/boost/interprocess/errors.hpp (original)
+++ branches/doc/boost/interprocess/errors.hpp 2008-05-05 16:29:12 EDT (Mon, 05 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: branches/doc/boost/interprocess/smart_ptr/unique_ptr.hpp
==============================================================================
--- branches/doc/boost/interprocess/smart_ptr/unique_ptr.hpp (original)
+++ branches/doc/boost/interprocess/smart_ptr/unique_ptr.hpp 2008-05-05 16:29:12 EDT (Mon, 05 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 us deleter, otherwise the reference is copy constructed from us 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 us deleter, otherwise the reference
- //!is copy constructed from us 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 us 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
- //!us 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 swapd (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