Language
C++
Compiler
gcc 7.3.0
Options
Warnings
Boost 1.72.0
C++14
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/gcc-7.3.0/include -std=c++14
false
false
Exit Code:
0
Author
anonymous
about 5 years ago
C++
gcc 7.3.0
Author
anonymous
about 5 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/gcc-7.3.0/include -std=c++14
prog.cc: In function 'int thrower(int)':
prog.cc:34:17: warning: unused parameter 'x' [-Wunused-parameter]
int thrower(int x) { throw(0); }
^
prog.cc: In function 'int main(int, char**)':
prog.cc:36:14: warning: unused parameter 'argc' [-Wunused-parameter]
int main(int argc, char* argv[])
^~~~
prog.cc:36:31: warning: unused parameter 'argv' [-Wunused-parameter]
int main(int argc, char* argv[])
^
false
false