Language
C++
Compiler
clang 3.1
Options
Warnings
Don't Use Boost
C++11(GNU)
no pedantic
$ clang++ prog.cc -Wall -Wextra -std=gnu++11
Hello, Wandbox!2
Exit Code:
0
Author
anonymous
over 3 years ago
C++
clang 3.1
Author
anonymous
over 3 years ago
$ clang++ prog.cc -Wall -Wextra -std=gnu++11
In file included from prog.cc:4:
./test.h:2:12: warning: expression result unused [-Wunused-value]
return 1, 2;
^
1 warning generated.
Hello, Wandbox!2