Language
C++
Compiler
clang 8.0.0
Options
Warnings
Boost 1.70.0
C++2a(GNU)
-pedantic-errors
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/clang-8.0.0/include -std=gnu++2a -pedantic-errors
Exit Code:
0
Author
anonymous
over 5 years ago
C++
clang 8.0.0
Author
anonymous
over 5 years ago
$ clang++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.70.0/clang-8.0.0/include -std=gnu++2a -pedantic-errors
prog.cc:38:5: warning: 'test2' is deprecated:
Use this_func()
Description: ...
Parameter: ...
[-Wdeprecated-declarations]
test2();
^
prog.cc:33:3: note: 'test2' has been explicitly marked deprecated here
[[deprecated(STR)]]
^
1 warning generated.