clang-tidy checks are organized into modules. This refactoring moves the llvm module checks to clang::tidy::llvm
Details
Diff Detail
Event Timeline
Committed revision 230952.
Modified before commit: fixed issues pointed out in the comments.
clang-tidy/llvm/IncludeOrderCheck.cpp | ||
---|---|---|
50 | BTW, this needs to be clang-formatted. |
clang-tidy/llvm/IncludeOrderCheck.cpp | ||
---|---|---|
50 | Yes, I noticed a bunch of files in clang-tidy are deviating from clang-format style=LLVM. I planned to submit a separate changeset that will just clang-format everything. | |
clang-tidy/llvm/LLVMTidyModule.cpp | ||
36 | I was following the existing example of the readability module where they had it arranged this way. I was getting an error when the static was inside the namespace. I'll try it out and see if I can resolve the error. |
Wow, just one case of compiler being confused with another namespace llvm ;)