diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-29 22:19:40 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-02-05 19:44:25 (GMT) |
commit | 421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0 (patch) | |
tree | 3cddbf25b8b42e59b401e0d0a5670dab2a4c7e83 /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | 098160d5f2a1aa35d2f14c585dd87cefd8f56f41 (diff) | |
download | CMake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.zip CMake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.tar.gz CMake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.tar.bz2 |
Remove use of cmsys_stl.
It is not needed.
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 8f63ca2..fe6cc95 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -654,7 +654,7 @@ bool cmCPackNSISGenerator::GetListOfSubdirectories(const char* topdir, if (strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),".") && strcmp(dir.GetFile(static_cast<unsigned long>(fileNum)),"..")) { - cmsys_stl::string fullPath = topdir; + std::string fullPath = topdir; fullPath += "/"; fullPath += dir.GetFile(static_cast<unsigned long>(fileNum)); if(cmsys::SystemTools::FileIsDirectory(fullPath) && |