summaryrefslogtreecommitdiffstats
path: root/Help/manual
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-30 13:47:38 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-06-30 13:47:38 (GMT)
commit2bef3774276e0b27718107edccd5e107fd72b292 (patch)
treed6775f73193773b1395674f95c47c3952468734f /Help/manual
parent21afc0291e9aa9ace69da008e267dfc3c278eca0 (diff)
parentb5ec5b0901177ebcd116d6ddd66ed114549014ec (diff)
downloadCMake-2bef3774276e0b27718107edccd5e107fd72b292.zip
CMake-2bef3774276e0b27718107edccd5e107fd72b292.tar.gz
CMake-2bef3774276e0b27718107edccd5e107fd72b292.tar.bz2
Merge topic 'refactor-auto_ptr'
b5ec5b09 Avoid using KWSys auto_ptr by adopting it ourselves
Diffstat (limited to 'Help/manual')
-rw-r--r--Help/manual/cmake-developer.7.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst
index 7bfdcad..afaccc6 100644
--- a/Help/manual/cmake-developer.7.rst
+++ b/Help/manual/cmake-developer.7.rst
@@ -24,9 +24,10 @@ to build with such toolchains.
std::auto_ptr
-------------
-Some implementations have a ``std::auto_ptr`` which can not be used as a
-return value from a function. ``std::auto_ptr`` may not be used. Use
-``cmsys::auto_ptr`` instead.
+The ``std::auto_ptr`` template is deprecated in C++11. We want to use it
+so we can build on C++98 compilers but we do not want to turn off compiler
+warnings about deprecated interfaces in general. Use the ``CM_AUTO_PTR``
+macro instead.
size_t
------