Language
C++
Compiler
gcc 9.2.0
Options
Warnings
Boost 1.70.0
C++2a(GNU)
-pedantic
Raw compiler options
-Wconversion
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/gcc-9.2.0/include -std=gnu++2a -pedantic -Wconversionint.
Exit Code:
0
Author
anonymous
almost 6 years ago
C++
gcc 9.2.0
Author
anonymous
almost 6 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/gcc-9.2.0/include -std=gnu++2a -pedantic -Wconversionprog.cc: In function 'void Foo(short int)':
prog.cc:3:16: warning: unused parameter 'a' [-Wunused-parameter]
3 | void Foo(short a)
| ~~~~~~^
prog.cc: In function 'void Foo(int)':
prog.cc:8:14: warning: unused parameter 'a' [-Wunused-parameter]
8 | void Foo(int a)
| ~~~~^
int.