Language
C++
Compiler
clang 15.0.0
Options
Warnings
Don't Use Boost
C++2b
-pedantic-errors
Raw compiler options
-pedantic
-Werror=pedantic
-O0
#include <iostream>
int main()
{
std::cout << "hello world from sigcpp\n";
}
$ clang++ prog.cc -Wall -Wextra -std=c++2b -pedantic-errors -pedantic -Werror=pedantic -O0
hello world from sigcpp
Exit Code:
0