mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-19 05:30:59 -06:00
cmStandardIncludes: Remove MSVC6 condition for cmArrayBegin macro.
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user