search for: missing_module

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

2019 Jul 03
2
clang-tidy standalone
...leset. With clang-tidy I have the problem that 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...