Language
C++
Compiler
clang 8.0.0
Options
Warnings
Optimization
Boost 1.70.0
C++2a(GNU)
no pedantic
$ clang++ prog.cc -Wall -Wextra -O2 -march=native -I/opt/wandbox/boost-1.70.0/clang-8.0.0/include -std=gnu++2a
1
412
Exit Code:
0
Author
anonymous
about 6 years ago
C++
clang 8.0.0
Author
anonymous
about 6 years ago
$ clang++ prog.cc -Wall -Wextra -O2 -march=native -I/opt/wandbox/boost-1.70.0/clang-8.0.0/include -std=gnu++2a
prog.cc:15:23: warning: second argument to 'va_start' is not the last named parameter [-Wvarargs]
va_start (args, this);
^
1 warning generated.
1
412