diff options
author | Brad King <brad.king@kitware.com> | 2014-11-25 15:28:57 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-11-25 15:28:57 (GMT) |
commit | c7b9fad117a8036bb1a1bece633bacff426d30fb (patch) | |
tree | 9a9df25a87a518e7c0d1381350a0fab2f9274ae9 /Source/cmSystemTools.cxx | |
parent | a11dda1c4883eddf763ba1eb2979b45220886b01 (diff) | |
parent | 12cb0b868c462ec64f1578f5450e64246986c58d (diff) | |
download | CMake-c7b9fad117a8036bb1a1bece633bacff426d30fb.zip CMake-c7b9fad117a8036bb1a1bece633bacff426d30fb.tar.gz CMake-c7b9fad117a8036bb1a1bece633bacff426d30fb.tar.bz2 |
Merge topic 'remove-ancient-msvc-workarounds'
12cb0b86 Help: Update developer manual with some C++ features now permitted.
ba74465f cmGeneratorTarget: Remove MSVC7 workaround
41363c0c VisualStudio: Remove MSVC6 compatibility macro.
4efcfe52 cmSystemTools: Remove MSVC6 compatibility define.
5f4695cd cmStandardIncludes: Remove MSVC6 condition for cmArrayBegin macro.
7a064337 cmFindCommon: Remove MSVC6 workaround for nested struct private access.
fdb73547 cmTarget: Remove std::min and std::max MSVC6 compatibility code.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 7e93384..baac7b8 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -9,9 +9,7 @@ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more information. ============================================================================*/ -#if defined(_MSC_VER) && _MSC_VER < 1300 -# define _WIN32_WINNT 0x0400 /* for wincrypt.h */ -#endif + #include "cmSystemTools.h" #include <ctype.h> #include <errno.h> |