summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2016-04-28 01:42:12 +0000
committerStephen Hines <srhines@google.com>2016-04-28 01:42:12 +0000
commit15643352ebec4e44ec03ab02491986f15acf132a (patch)
treedf7a691e666c1903610df7fd09d00a6515c1ad47
parent76bb8d6719c2f664a69c4e2e89664c230f807a3b (diff)
downloadbcm5719-llvm-15643352ebec4e44ec03ab02491986f15acf132a.tar.gz
bcm5719-llvm-15643352ebec4e44ec03ab02491986f15acf132a.zip
Fix include path in ClangTidy.cpp.
Summary: https://llvm.org/bugs/show_bug.cgi?id=27355 To compile with other binary output directory structures in build systems like Android. Reviewers: srhines, alexfh Subscribers: tberghammer, danalbert, cfe-commits Differential Revision: http://reviews.llvm.org/D19249 llvm-svn: 267835
-rw-r--r--clang-tools-extra/clang-tidy/ClangTidy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/ClangTidy.cpp b/clang-tools-extra/clang-tidy/ClangTidy.cpp
index ac1859f06ef..95ea0eb4955 100644
--- a/clang-tools-extra/clang-tidy/ClangTidy.cpp
+++ b/clang-tools-extra/clang-tidy/ClangTidy.cpp
@@ -58,7 +58,7 @@ static const StringRef StaticAnalyzerChecks[] = {
#define GET_CHECKERS
#define CHECKER(FULLNAME, CLASS, DESCFILE, HELPTEXT, GROUPINDEX, HIDDEN) \
FULLNAME,
-#include "../../../lib/StaticAnalyzer/Checkers/Checkers.inc"
+#include "clang/StaticAnalyzer/Checkers/Checkers.inc"
#undef CHECKER
#undef GET_CHECKERS
};
OpenPOWER on IntegriCloud