diff options
author | Brad King <brad.king@kitware.com> | 2004-03-16 17:54:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2004-03-16 17:54:39 (GMT) |
commit | cb37fe01f68766f44e82df973c3768103cfac526 (patch) | |
tree | a1e1eb31b773a49cf56f9a27f4b6bad996f5b92a /Source/cmExportLibraryDependencies.cxx | |
parent | 9e8a45d10664a409b556ca803693ffab9a767ba8 (diff) | |
download | CMake-cb37fe01f68766f44e82df973c3768103cfac526.zip CMake-cb37fe01f68766f44e82df973c3768103cfac526.tar.gz CMake-cb37fe01f68766f44e82df973c3768103cfac526.tar.bz2 |
ERR: Added missing include for auto_ptr.
Diffstat (limited to 'Source/cmExportLibraryDependencies.cxx')
-rw-r--r-- | Source/cmExportLibraryDependencies.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmExportLibraryDependencies.cxx b/Source/cmExportLibraryDependencies.cxx index b637f85..c8b2169 100644 --- a/Source/cmExportLibraryDependencies.cxx +++ b/Source/cmExportLibraryDependencies.cxx @@ -20,6 +20,8 @@ #include "cmGeneratedFileStream.h" #include "cmake.h" +#include <memory> // auto_ptr + // cmExecutableCommand bool cmExportLibraryDependenciesCommand::InitialPass(std::vector<std::string> const& args) { |