diff options
author | Brad King <brad.king@kitware.com> | 2015-08-20 20:02:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-08-20 20:19:08 (GMT) |
commit | 6db713c07f2f1b14f695e123008522daf3d26527 (patch) | |
tree | a61303680b054387d6df2cc97796d6befcf1f76e /Source/cmCryptoHash.cxx | |
parent | e72a5b2c0b51f90970fc4ef27969cee9990be862 (diff) | |
download | CMake-6db713c07f2f1b14f695e123008522daf3d26527.zip CMake-6db713c07f2f1b14f695e123008522daf3d26527.tar.gz CMake-6db713c07f2f1b14f695e123008522daf3d26527.tar.bz2 |
Remove use of include <cmsys/ios/*> and cmsys_ios::*
We no longer need this compatibility layer for the compilers we support.
Diffstat (limited to 'Source/cmCryptoHash.cxx')
-rw-r--r-- | Source/cmCryptoHash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCryptoHash.cxx b/Source/cmCryptoHash.cxx index 74e17b6..6616218 100644 --- a/Source/cmCryptoHash.cxx +++ b/Source/cmCryptoHash.cxx @@ -46,7 +46,7 @@ std::string cmCryptoHash::HashString(const std::string& input) //---------------------------------------------------------------------------- std::string cmCryptoHash::HashFile(const std::string& file) { - cmsys::ifstream fin(file.c_str(), std::ios::in | cmsys_ios_binary); + cmsys::ifstream fin(file.c_str(), std::ios::in | std::ios::binary); if(!fin) { return ""; |