Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r81867 - trunk/libs/smart_ptr
From: glenfe_at_[hidden]
Date: 2012-12-11 17:44:57


Author: glenfe
Date: 2012-12-11 17:44:57 EST (Tue, 11 Dec 2012)
New Revision: 81867
URL: http://svn.boost.org/trac/boost/changeset/81867

Log:
Documentation corrections: make_shared_array.html
Text files modified:
   trunk/libs/smart_ptr/make_shared_array.html | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/libs/smart_ptr/make_shared_array.html
==============================================================================
--- trunk/libs/smart_ptr/make_shared_array.html (original)
+++ trunk/libs/smart_ptr/make_shared_array.html 2012-12-11 17:44:57 EST (Tue, 11 Dec 2012)
@@ -205,17 +205,17 @@
     <pre>template&lt;typename T&gt;
     shared_ptr&lt;T[]&gt; make_shared_noinit(size_t size);
 template&lt;typename T, typename A&gt;
- shared_ptr&lt;T[]&gt; make_shared_noinit(const A&amp; allocator, size_t size);</pre>
+ shared_ptr&lt;T[]&gt; allocate_shared_noinit(const A&amp; allocator, size_t size);</pre>
     <blockquote>
- <p><b>Description:</b> This overload does not perform value
+ <p><b>Description:</b> These overloads do not perform any value
         initialization of elements.</p>
     </blockquote>
     <pre>template&lt;typename T&gt;
     shared_ptr&lt;T[N]&gt; make_shared_noinit();
 template&lt;typename T, typename A&gt;
- shared_ptr&lt;T[N]&gt; make_shared_noinit(const A&amp; allocator);</pre>
+ shared_ptr&lt;T[N]&gt; allocate_shared_noinit(const A&amp; allocator);</pre>
     <blockquote>
- <p><b>Description:</b> This overload of the utility above is used for a
+ <p><b>Description:</b> These overloads of the utilities above are for a
         fixed size array.</p>
     </blockquote>
     <h2><a name="example">Example</a></h2>


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