Language
C++
Compiler
clang 9.0.0
Options
Warnings
Don't Use Boost
C++17
-pedantic-errors
Raw compiler options
-Werror
$ clang++ prog.cc -Wall -Wextra -std=c++17 -pedantic-errors -Werror
Before reflection:
1) point: (1, 0, 2)
2) line:
point: (-2, 1, 5)
direction: (1, 1, 1)
3) point: (2, 1, 3)
4) plane:
point: (8, 5, -2)
normal: (0, 1, 0)
After reflection:
1) point: (-1, 0, 2)
2) line:
point: (2, 1, 5)
direction: (-1, 1, 1)
3) point: (-2, 1, 3)
4) plane:
point: (-8, 5, -2)
normal: (-0, 1, 0)
Exit Code:
0