Closed bernschab closed 12 years ago
size_t MAX = 100;
int sinArray[MAX];
This is not allowed in ISO C++:
main.cpp:9:21: warning: ISO C++ forbids variable length array ‘sinArray’ [-Wvla]
main.cpp:10:20: warning: ISO C++ forbids variable length array ‘yxArray’ [-Wvla]
DDD seems to handle this by interpreting both arrays as pointers -- this could be a solution worth investigating.
Variablen als Längenangabe bei Arrays werden nicht sinnvoll interpretiert -> keine Darstellung im Graph möglich.