cmArray: Use macro variant of cmArray{Begin,Size,End} for old GCC.
It is not capable of using the template versions.
This commit is contained in:
parent
d169b1f037
commit
dfe0c2168b
|
@ -377,7 +377,8 @@ static thisClass* SafeDownCast(cmObject *c) \
|
||||||
return 0;\
|
return 0;\
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER < 1300
|
#if defined(_MSC_VER) && _MSC_VER < 1300 \
|
||||||
|
|| defined(__GNUC__) && __GNUC__ < 3
|
||||||
|
|
||||||
#define cmArrayBegin(a) a
|
#define cmArrayBegin(a) a
|
||||||
#define cmArraySize(a) (sizeof(a)/sizeof(*a))
|
#define cmArraySize(a) (sizeof(a)/sizeof(*a))
|
||||||
|
|
Loading…
Reference in New Issue