Language
C++
Compiler
gcc HEAD 11.0.0 20200918 (experimental)
Options
Warnings
Boost 1.73.0
C++2a(GNU)
-pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-head/include -std=gnu++2a -pedantic Exit Code:
0
C++
gcc HEAD 11.0.0 20200918 (experimental)
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-head/include -std=gnu++2a -pedantic prog.cc: In function 'int main()':
prog.cc:9:4: warning: value computed is not used [-Wunused-value]
9 | *(&f), 10; // C4545
| ^~~~~
prog.cc:9:13: warning: right operand of comma operator has no effect [-Wunused-value]
9 | *(&f), 10; // C4545
| ^