[PATCH] D19249: Fix include path in ClangTidy.cpp.

Alexander Kornienko via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 21 09:54:25 PDT 2016


alexfh requested changes to this revision.
This revision now requires changes to proceed.

================
Comment at: clang-tidy/ClangTidy.cpp:61
@@ -60,3 +60,3 @@
   FULLNAME,
-#include "../../../lib/StaticAnalyzer/Checkers/Checkers.inc"
+#include "Checkers.inc"
 #undef CHECKER
----------------
As it is, the change leaves almost no context of where the Checkers.inc file comes from. I'd prefer to leave at least `lib/StaticAnalyzer/Checkers/Checkers.inc`. Will this work for you?

Another question is how do you deal with other .inc files generated from .td files in llvm/lib/... or llvm/tools/clang/lib/...?


http://reviews.llvm.org/D19249





More information about the cfe-commits mailing list