I have a project with this C code:
XCode posts a strange warning:
Variable length array folded to constant array as an extension
There is no warning if I remove the const declaration from the ARRAY_SIZE declaration.
What does this mean?
Code:
const unsigned long ARRAY_SIZE = 1000000;
unsigned long array[ARRAY_SIZE];
XCode posts a strange warning:
Variable length array folded to constant array as an extension
There is no warning if I remove the const declaration from the ARRAY_SIZE declaration.
What does this mean?