Add comp_compatible_smart_ptr.sh and use it

This commit is contained in:
Christos Stratopoulos
2018-04-07 00:13:32 -04:00
parent dd292c43ce
commit 28615c5fac
4 changed files with 16 additions and 2 deletions

View File

@@ -33,5 +33,6 @@ sh comp_ptr_multimap.sh
sh comp_ptr_set.sh
sh comp_ptr_multiset.sh
sh comp_indirect_fun.sh
sh comp_compatible_smart_ptr.sh

View File

@@ -0,0 +1,13 @@
#//
#// Boost.Pointer Container
#//
#// Copyright Thorsten Ottosen 2003-2005. 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)
#//
#// For more information, see http://www.boost.org/libs/ptr_container/
#//
rst2html.py compatible_smart_ptr.rst > compatible_smart_ptr.html

Binary file not shown.

View File

@@ -10,7 +10,7 @@ Compatible Smart Pointer Type
The interface reference for this library makes use of the pseudo-type
.. parsed-literal::
*compatible-smart-ptr<T>*
*compatible-smart-ptr*\ <T>
to indicate that either ``std::auto_ptr<T>`` or
``std::unique_ptr<T>`` is being used depending on the compiler C++ standard.
@@ -39,7 +39,7 @@ Boost.Pointer Container provides function overloads which use
``std::unique_ptr<T>`` instead. Thus, all mentions of
.. parsed-literal::
*compatible-smart-ptr<T>*
*compatible-smart-ptr*\ <T>
shall be understood to mean that `Boost.Config
<../../config/index.html>`_ has been used as outlined above to provide