Language
C++
Compiler
gcc 8.3.0
Options
Warnings
Boost 1.73.0
C++2a(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-8.3.0/include -std=gnu++2a
Exit Code:
1
Author
anonymous
over 3 years ago
C++
gcc 8.3.0
Author
anonymous
over 3 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-8.3.0/include -std=gnu++2a
prog.cc: In lambda function:
prog.cc:37:23: error: passing 'const S' as 'this' argument discards qualifiers [-fpermissive]
it->set_c();
^
prog.cc:18:10: note: in call to 'void S::set_c()'
void set_c() { c = 222; }
^~~~~