diff options
author | Eric Liu <ioeric@google.com> | 2018-05-18 14:16:37 +0000 |
---|---|---|
committer | Eric Liu <ioeric@google.com> | 2018-05-18 14:16:37 +0000 |
commit | e0a3f5b1a9651bb4f76651d5a70d10cdb3fb9dc0 (patch) | |
tree | ed37bbb1df0c1e54cae20c0a8d54f61f27e46f12 /clang/unittests/Tooling/HeaderIncludesTest.cpp | |
parent | 1237095b3c973e6e7d8a0cc5c27ee439507caa49 (diff) | |
download | bcm5719-llvm-e0a3f5b1a9651bb4f76651d5a70d10cdb3fb9dc0.tar.gz bcm5719-llvm-e0a3f5b1a9651bb4f76651d5a70d10cdb3fb9dc0.zip |
Move #include manipulation code to new lib/Tooling/Inclusions.
Summary:
clangToolingCore is linked into almost everything (incl. clang), but
not few tools need #include manipulation at this point. So pull this into a
separate library in Tooling.
Reviewers: ilya-biryukov
Subscribers: klimek, mgorny, cfe-commits, thakis
Differential Revision: https://reviews.llvm.org/D47068
llvm-svn: 332720
Diffstat (limited to 'clang/unittests/Tooling/HeaderIncludesTest.cpp')
-rw-r--r-- | clang/unittests/Tooling/HeaderIncludesTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/HeaderIncludesTest.cpp b/clang/unittests/Tooling/HeaderIncludesTest.cpp index 4407221f8ad..ff68f75a6e8 100644 --- a/clang/unittests/Tooling/HeaderIncludesTest.cpp +++ b/clang/unittests/Tooling/HeaderIncludesTest.cpp @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// -#include "clang/Tooling/Core/HeaderIncludes.h" +#include "clang/Tooling/Inclusions/HeaderIncludes.h" #include "../Tooling/ReplacementTest.h" #include "../Tooling/RewriterTestContext.h" #include "clang/Format/Format.h" |