Hi,
Just downloaded the new final version 10. Great job as usual. For me, still the best environment to develop C for Win32.
I noticed that an expression like
int * sizebytes
....
char mbBuffer[*sizebytes*2];
does not compile anymore, giving :
error #2067: Invalid use of '*'.
It was compiling fine in V 9.
Which is right ?
Thx :)
Hi,
It does seem to be a problem. Two ways to work around it.
1) char mbBuffer[(*sizebytes * 2)];
or
2) int k = *sizebytes * 2;
char mbBuffer[k];
Hope this helps until resolved,
John Z
It's a bug, but with low priority. Easy to work around, and the VLA feature has a sketchy future. May be fixed in some future version...