On 28 June 2015 at 20:21, shiv <00shiv@xxxxxxxxx> wrote: > Reading the gcc 5.1 manual it seems that VLA parameters must be accepted by > g++. For example the following is fine when compiled with gcc --std=gnu11 > > /////////////////////////////////// > float sum (int M, float x[M]) { > return x[0] + x[1]; > } > > int main (void) { > float xs[2] = {1, 2}; > float acc = sum (2, xs); > return 0; > } > ///////////////////////////////// > > But it is rejected by g++ --std=gnu++11. > > Is this possible at all with g++? Thanks. No, I don't think so, G++ only supports some kinds of VLA. You have to use float x[] or float* x in C++.