Language
C++
Compiler
gcc HEAD 10.0.0 20190919 (experimental)
Options
Warnings
Don't Use Boost
C++17
-pedantic
$ g++ prog.cc -Wall -Wextra -std=c++17 -pedantic
Exit Code:
0
Author
anonymous
over 5 years ago
C++
gcc HEAD 10.0.0 20190919 (experimental)
Author
anonymous
over 5 years ago
$ g++ prog.cc -Wall -Wextra -std=c++17 -pedantic
prog.cc: In function 'int main(int, char**)':
prog.cc:7:36: warning: narrowing conversion of 'std::forward<int>(argc)' from 'int' to 'double' [-Wnarrowing]
7 | double x[] = {std::forward<int>(argc)};
| ~~~~~~~~~~~~~~~~~^~~~~~
prog.cc:7:12: warning: unused variable 'x' [-Wunused-variable]
7 | double x[] = {std::forward<int>(argc)};
| ^