Language
C++
Compiler
clang 4.0.1
Options
Warnings
Don't Use Boost
C++14
no pedantic
$ clang++ prog.cc -Wall -Wextra -std=c++14
Exit Code:
1
Author
anonymous
about 6 years ago
C++
clang 4.0.1
Author
anonymous
about 6 years ago
$ clang++ prog.cc -Wall -Wextra -std=c++14
prog.cc:43:17: warning: unused variable 'style' [-Wunused-variable]
FontStyle style = FontStyle::CENTER;
^
1 warning generated.
/tmp/prog-289937.o: In function `main':
prog.cc:(.text+0x16): undefined reference to `FontStyle::CENTER'
clang-4.0: error: linker command failed with exit code 1 (use -v to see invocation)