diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-29 23:19:40 +0100 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-02-05 20:44:25 +0100 |
commit | 421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0 (patch) | |
tree | 3cddbf25b8b42e59b401e0d0a5670dab2a4c7e83 /Source/cmFileCommand.cxx | |
parent | 098160d5f2a1aa35d2f14c585dd87cefd8f56f41 (diff) | |
download | cmake-421eadb45b48d40aa7d0b5e42a48df4ba94b9fc0.tar.gz |
Remove use of cmsys_stl.
It is not needed.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 579e7156e6..8b893bc7a3 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -71,7 +71,7 @@ static std::string fix_file_url_windows(const std::string& url) std::string ret = url; if(strncmp(url.c_str(), "file://", 7) == 0) { - cmsys_stl::wstring wurl = cmsys::Encoding::ToWide(url); + std::wstring wurl = cmsys::Encoding::ToWide(url); if(!wurl.empty()) { int mblen = WideCharToMultiByte(CP_ACP, 0, wurl.c_str(), -1, @@ -1843,7 +1843,7 @@ bool cmFileCopier::InstallDirectory(const char* source, if(!(strcmp(dir.GetFile(fileNum), ".") == 0 || strcmp(dir.GetFile(fileNum), "..") == 0)) { - cmsys_stl::string fromPath = source; + std::string fromPath = source; fromPath += "/"; fromPath += dir.GetFile(fileNum); std::string toPath = destination; |