diff options
author | Reid Kleckner <rnk@google.com> | 2019-11-22 16:14:40 -0800 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-11-22 16:16:10 -0800 |
commit | 019779dadfd7c98aedf0072d604ace295be6fa62 (patch) | |
tree | fe3dd58c27c0bc40b568e66490c5c8995380508a | |
parent | a9cc64e50e64e76151679780f0ace11b48eadd44 (diff) | |
download | bcm5719-llvm-019779dadfd7c98aedf0072d604ace295be6fa62.tar.gz bcm5719-llvm-019779dadfd7c98aedf0072d604ace295be6fa62.zip |
Remove needless Attr.h include from DeclCXX.h, NFC
This actually has no impact on the build, because TypeLoc.h includes
Attr.h. However, DeclCXX.h has no need of it, so go ahead and remove it.
The final step in this patch series is to split Attr.h and Attrs.h.
-rw-r--r-- | clang/include/clang/AST/DeclCXX.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/include/clang/AST/DeclCXX.h b/clang/include/clang/AST/DeclCXX.h index 4960eccbd52..63d67bd3f55 100644 --- a/clang/include/clang/AST/DeclCXX.h +++ b/clang/include/clang/AST/DeclCXX.h @@ -17,7 +17,6 @@ #include "clang/AST/ASTContext.h" #include "clang/AST/ASTUnresolvedSet.h" -#include "clang/AST/Attr.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclBase.h" #include "clang/AST/DeclarationName.h" |