Language
C++
Compiler
gcc 9.1.0
Options
Warnings
Boost 1.70.0
C++17
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/gcc-9.1.0/include -std=c++17
Exit Code:
1
Author
anonymous
over 5 years ago
C++
gcc 9.1.0
Author
anonymous
over 5 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/gcc-9.1.0/include -std=c++17
prog.cc:27:18: error: invalid use of non-static data member 'Student::MaxNrOfCrs'
27 | Course crs[MaxNrOfCrs][Grade];
| ^~~~~~~~~~
prog.cc:25:17: note: declared here
25 | const int MaxNrOfCrs = 10; // here is my error
| ^~~~~~~~~~
prog.cc:27:30: error: invalid use of non-static data member 'Student::Grade'
27 | Course crs[MaxNrOfCrs][Grade];
| ^~~~~
prog.cc:26:17: note: declared here
26 | const int Grade = 1; // The same error appears here also
| ^~~~~