c++

concepts

Linkers Pointer

syntactic sugar

compile options

enable all warnings

Add the following flags to your command line: -Wall -Weffc++ -Wextra -Wsign-conversion

treat warnings as errors

Add the following flag to your command line: -Werror

disable compiler extensions

You can disable compiler extensions by adding the -pedantic-errors flag to the compile command line.

#draft