summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-11-20 21:22:45 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-11-20 21:22:45 (GMT)
commit5f4695cd06a124236520c8a28d8b65929f83bd3f (patch)
treec08e2d362a92a387b0ee9e7d34ff8de3a23f848c /Source/cmStandardIncludes.h
parent7a0643379be273e64a6454be4be51e652ff093c4 (diff)
downloadCMake-5f4695cd06a124236520c8a28d8b65929f83bd3f.zip
CMake-5f4695cd06a124236520c8a28d8b65929f83bd3f.tar.gz
CMake-5f4695cd06a124236520c8a28d8b65929f83bd3f.tar.bz2
cmStandardIncludes: Remove MSVC6 condition for cmArrayBegin macro.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index ffabd7a..6b85634 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -393,8 +393,7 @@ inline bool cmHasLiteralSuffixImpl(const char* str1,
return len >= N && strcmp(str1 + len - N, str2) == 0;
}
-#if defined(_MSC_VER) && _MSC_VER < 1300 \
- || defined(__GNUC__) && __GNUC__ < 3
+#if defined(__GNUC__) && __GNUC__ < 3
#define cmArrayBegin(a) a
#define cmArraySize(a) (sizeof(a)/sizeof(*a))