Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

almost 7 years ago

Language

C++

Compiler

gcc 4.8.5

Options
Warnings
Boost 1.64.0
C++1y(GNU)
-pedantic

Author

anonymous

almost 7 years ago

a.h

$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.64.0/gcc-4.8.5/include -std=gnu++1y -pedantic
prog.cc: In function 'int main()':
prog.cc:8:23: warning: ISO C++ forbids variable length array 'opt' [-Wvla]
     int opt[rows][cols] = {0};
                       ^
prog.cc:8:23: warning: ISO C++ forbids variable length array 'opt' [-Wvla]
prog.cc:8:29: error: variable-sized object 'opt' may not be initialized
     int opt[rows][cols] = {0};
                             ^
Exit Code:
1