Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.05 KB

File metadata and controls

41 lines (27 loc) · 1.05 KB

General tips

g++

To get the list of g++ warnings:

g++ --help=warnings

clang++

To get the list of clang++ warnings, see Diagnostic flags in Clang.

Generally all warnings flags which g++ implements will be implemented by clang++. BUT they might be implemented differently (and hence triggered on slightly different conditions).

See: Clang tools

clang-tidy

See: Clang-tidy

See: Clang-Tidy

clang-check

See: Clang-check

Other tools

See: