diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-11-20 23:56:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-11-20 23:56:36 (GMT) |
commit | ddc052052b05d6daea0791efd2e1b97a9349a5e9 (patch) | |
tree | e4452d05e36f1083cd2a804334011dacd9af50ca /Source/cmSystemTools.cxx | |
parent | 8faf4e93801a025d4cb17d2ef12437e5554798b1 (diff) | |
download | CMake-ddc052052b05d6daea0791efd2e1b97a9349a5e9.zip CMake-ddc052052b05d6daea0791efd2e1b97a9349a5e9.tar.gz CMake-ddc052052b05d6daea0791efd2e1b97a9349a5e9.tar.bz2 |
Always use the auto_ptr from cmsys.
This is for consistency throughout cmake. The cmsys version exists
becaues uses of auto_ptr types as return types does not work with
some implementations in ancient compilers.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 89f03f6..22b6aec 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -52,7 +52,6 @@ #endif #if defined(CMAKE_BUILD_WITH_CMAKE) -# include <memory> // auto_ptr # include <fcntl.h> # include "cmCryptoHash.h" #endif |