diff options
author | Yitzhak Mandelbaum <yitzhakm@google.com> | 2019-10-10 02:34:47 +0000 |
---|---|---|
committer | Yitzhak Mandelbaum <yitzhakm@google.com> | 2019-10-10 02:34:47 +0000 |
commit | fbdf83521b17c4683e4f819587000bbce71d928b (patch) | |
tree | 729317d14b678ab28d26557e4d46478783435cc4 /clang/unittests/Tooling/SourceCodeBuildersTest.cpp | |
parent | 79a8476d4363912553d5165a055601bcd417e8ff (diff) | |
download | bcm5719-llvm-fbdf83521b17c4683e4f819587000bbce71d928b.tar.gz bcm5719-llvm-fbdf83521b17c4683e4f819587000bbce71d928b.zip |
[libTooling] Move Transformer files to their own directory/library.
Summary:
The Transformer library has been growing inside of
lib/Tooling/Refactoring. However, it's not really related to anything else in
that directory. This revision moves all Transformer-related files into their own
include & lib directories. A followup revision will (temporarily) add
forwarding headers to help any users migrate their code to the new location.
Reviewers: gribozavr
Subscribers: mgorny, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D68637
llvm-svn: 374271
Diffstat (limited to 'clang/unittests/Tooling/SourceCodeBuildersTest.cpp')
-rw-r--r-- | clang/unittests/Tooling/SourceCodeBuildersTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/SourceCodeBuildersTest.cpp b/clang/unittests/Tooling/SourceCodeBuildersTest.cpp index 2bf50ffad58..9b5e7bf3ba8 100644 --- a/clang/unittests/Tooling/SourceCodeBuildersTest.cpp +++ b/clang/unittests/Tooling/SourceCodeBuildersTest.cpp @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -#include "clang/Tooling/Refactoring/SourceCodeBuilders.h" +#include "clang/Tooling/Transformer/SourceCodeBuilders.h" #include "clang/ASTMatchers/ASTMatchFinder.h" #include "clang/ASTMatchers/ASTMatchers.h" #include "clang/Tooling/Tooling.h" |