dougpuob / cppnamelint

CppNameLint is a naming convention linter of C/C++ source code (Based on LLVM's libtooling), which runs with command line on Windows/Linux/macOS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Bug] Sometimes it will check type not variable name

JeffHsu79 opened this issue · comments

image
image

This is because LLVM clang treats this Decl as an invalid decl, it may reference to unknown header files.

I added a new option in config file, BypassInvalidDecl. I can be bypassed or indicated a include folder with -include command line option. This PR(#47) fixed the problem.