cmStandardIncludes: Remove MSVC6 condition for cmArrayBegin macro.
This commit is contained in:
parent
7a0643379b
commit
5f4695cd06
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue