summaryrefslogtreecommitdiffstats
path: root/Source/cmFindPackageCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-08-24 18:28:43 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-08-24 18:28:43 (GMT)
commitddb7f280ce4e7a76dc66c53e933df9e11ee35e20 (patch)
tree9db0b69467d9aa4a19820214099d8140799e70a1 /Source/cmFindPackageCommand.cxx
parent2370a99400c6450606e25562386cf40bc9c41f38 (diff)
parent04e708d8df71234750b3ea00e2d9ada0dd7def82 (diff)
downloadCMake-ddb7f280ce4e7a76dc66c53e933df9e11ee35e20.zip
CMake-ddb7f280ce4e7a76dc66c53e933df9e11ee35e20.tar.gz
CMake-ddb7f280ce4e7a76dc66c53e933df9e11ee35e20.tar.bz2
Merge topic 'drop-cmsys-std-layer'
04e708d8 Remove use of include <cmsys/IOStream.hxx> from KWSys e8585f45 Remove use of include <cmsys/stl/*> and cmsys_stl::* 6db713c0 Remove use of include <cmsys/ios/*> and cmsys_ios::*
Diffstat (limited to 'Source/cmFindPackageCommand.cxx')
-rw-r--r--Source/cmFindPackageCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmFindPackageCommand.cxx b/Source/cmFindPackageCommand.cxx
index 68a6558..9b9071d 100644
--- a/Source/cmFindPackageCommand.cxx
+++ b/Source/cmFindPackageCommand.cxx
@@ -1378,7 +1378,7 @@ void cmFindPackageCommand::LoadPackageRegistryDir(std::string const& dir,
cmFindPackageCommandHoldFile holdFile(fname.c_str());
// Load the file.
- cmsys::ifstream fin(fname.c_str(), std::ios::in | cmsys_ios_binary);
+ cmsys::ifstream fin(fname.c_str(), std::ios::in | std::ios::binary);
std::string fentry;
if(fin && cmSystemTools::GetLineFromStream(fin, fentry) &&
this->CheckPackageRegistryEntry(fentry, outPaths))