search for: _dummy_h_

Displaying 1 result from an estimated 1 matches for "_dummy_h_".

2019 Jul 03
2
clang-tidy standalone
...it is trying to do "to much". So even if I'm disabling all rules but 'readability-identifier-naming ' the tool will still execute clang-diagnostic-error checks. Full example: dummy.c #include "dummy.h" #include "MISSING_module.h" // EOF dummy.h #ifndef _DUMMY_H_ #define _DUMMY_H_ #include <stdlib.h> // EOF I'm trying to execute the following command (macos) clang-tidy dummy.c -checks='-*,readability-identifier-naming' -- -DCMAKE_EXPORT_COMPILE_COMMANDS=ON` however, clang-tidy is still checking/following the includes (one of which doesn...