mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-08-01 13:44:37 +02:00
fix invalid bookmarks
[SVN r16824]
This commit is contained in:
@@ -34,7 +34,7 @@
|
|||||||
<h2>Synopsis</h2>
|
<h2>Synopsis</h2>
|
||||||
<pre>namespace boost {
|
<pre>namespace boost {
|
||||||
|
|
||||||
template<class T> class scoped_array : <a href="../utility/utility.htm#noncopyable">noncopyable</a> {
|
template<class T> class scoped_array : <a href="../utility/utility.htm#Class_noncopyable">noncopyable</a> {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef T <a href="#element_type">element_type</a>;
|
typedef T <a href="#element_type">element_type</a>;
|
||||||
@@ -100,12 +100,11 @@
|
|||||||
<p>Equivalent to <b>a.swap(b)</b>. Matches the interface of <b>std::swap</b>.
|
<p>Equivalent to <b>a.swap(b)</b>. Matches the interface of <b>std::swap</b>.
|
||||||
Provided as an aid to generic programming.</p>
|
Provided as an aid to generic programming.</p>
|
||||||
<hr>
|
<hr>
|
||||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan-->
|
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan-->09 January 2003<!--webbot bot="Timestamp" endspan i-checksum="32310"--></p>
|
||||||
1 February 2002<!--webbot bot="Timestamp" endspan i-checksum="13964"--></p>
|
|
||||||
<p>Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.
|
<p>Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.
|
||||||
Permission to copy, use, modify, sell and distribute this document is granted
|
Permission to copy, use, modify, sell and distribute this document is granted
|
||||||
provided this copyright notice appears in all copies. This document is provided
|
provided this copyright notice appears in all copies. This document is provided
|
||||||
"as is" without express or implied warranty, and with no claim as to its
|
"as is" without express or implied warranty, and with no claim as to its
|
||||||
suitability for any purpose.</p>
|
suitability for any purpose.</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@@ -34,7 +34,7 @@
|
|||||||
<h2>Synopsis</h2>
|
<h2>Synopsis</h2>
|
||||||
<pre>namespace boost {
|
<pre>namespace boost {
|
||||||
|
|
||||||
template<class T> class scoped_ptr : <a href="../utility/utility.htm#class noncopyable">noncopyable</a> {
|
template<class T> class scoped_ptr : <a href="../utility/utility.htm#Class_noncopyable">noncopyable</a> {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
typedef T <a href="#element_type">element_type</a>;
|
typedef T <a href="#element_type">element_type</a>;
|
||||||
@@ -165,12 +165,11 @@ Buckle my shoe</pre>
|
|||||||
given context. Use <STRONG>std::auto_ptr</STRONG> where transfer of ownership
|
given context. Use <STRONG>std::auto_ptr</STRONG> where transfer of ownership
|
||||||
is required. (supplied by Dave Abrahams)</p>
|
is required. (supplied by Dave Abrahams)</p>
|
||||||
<hr>
|
<hr>
|
||||||
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->
|
<p>Revised <!--webbot bot="Timestamp" s-type="EDITED" s-format="%d %B %Y" startspan -->09 January 2003<!--webbot bot="Timestamp" endspan i-checksum="32310" --></p>
|
||||||
17 September 2002<!--webbot bot="Timestamp" endspan i-checksum="15110" --></p>
|
|
||||||
<p>Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.
|
<p>Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.
|
||||||
Copyright 2002 Peter Dimov. Permission to copy, use, modify, sell and
|
Copyright 2002 Peter Dimov. Permission to copy, use, modify, sell and
|
||||||
distribute this document is granted provided this copyright notice appears in
|
distribute this document is granted provided this copyright notice appears in
|
||||||
all copies. This document is provided "as is" without express or implied
|
all copies. This document is provided "as is" without express or implied
|
||||||
warranty, and with no claim as to its suitability for any purpose.</p>
|
warranty, and with no claim as to its suitability for any purpose.</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@@ -26,8 +26,8 @@
|
|||||||
<p>A <b>shared_ptr</b> to a <b>std::vector</b> is an alternative to a <b>shared_array</b>
|
<p>A <b>shared_ptr</b> to a <b>std::vector</b> is an alternative to a <b>shared_array</b>
|
||||||
that is a bit heavier duty but far more flexible.</p>
|
that is a bit heavier duty but far more flexible.</p>
|
||||||
<p>The class template is parameterized on <b>T</b>, the type of the object pointed
|
<p>The class template is parameterized on <b>T</b>, the type of the object pointed
|
||||||
to. <b>T</b> must meet the smart pointer <a href="smart_ptr.htm#Common requirements">
|
to. <b>T</b> must meet the smart pointer
|
||||||
common requirements</a>.</p>
|
<a href="smart_ptr.htm#common_requirements">common requirements</a>.</p>
|
||||||
<h2>Synopsis</h2>
|
<h2>Synopsis</h2>
|
||||||
<pre>namespace boost {
|
<pre>namespace boost {
|
||||||
|
|
||||||
@@ -168,12 +168,11 @@ template<class T>
|
|||||||
<p>Equivalent to <b>a.swap(b)</b>. Matches the interface of <b>std::swap</b>.
|
<p>Equivalent to <b>a.swap(b)</b>. Matches the interface of <b>std::swap</b>.
|
||||||
Provided as an aid to generic programming.</p>
|
Provided as an aid to generic programming.</p>
|
||||||
<hr>
|
<hr>
|
||||||
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->
|
<p>Revised <!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B %Y" startspan -->09 January 2003<!--webbot bot="Timestamp" i-checksum="32310" endspan --></p>
|
||||||
8 February 2002<!--webbot bot="Timestamp" i-checksum="38439" endspan --></p>
|
|
||||||
<p>Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.
|
<p>Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.
|
||||||
Permission to copy, use, modify, sell and distribute this document is granted
|
Permission to copy, use, modify, sell and distribute this document is granted
|
||||||
provided this copyright notice appears in all copies. This document is provided
|
provided this copyright notice appears in all copies. This document is provided
|
||||||
"as is" without express or implied warranty, and with no claim as to its
|
"as is" without express or implied warranty, and with no claim as to its
|
||||||
suitability for any purpose.</p>
|
suitability for any purpose.</p>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Reference in New Issue
Block a user