diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-25 10:55:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-25 10:55:25 -0700 |
commit | 01138d3f6518c08fe14a527c21c54aefef0e6f57 (patch) | |
tree | fd2a9d41b9ae40d349f34c8cb1f4a37f991a0859 /clang/lib/AST/CXXInheritance.cpp | |
parent | f314588f41d4ee6ad57eb3e429ab12c56b9f07f9 (diff) | |
download | llvm-01138d3f6518c08fe14a527c21c54aefef0e6f57.zip llvm-01138d3f6518c08fe14a527c21c54aefef0e6f57.tar.gz llvm-01138d3f6518c08fe14a527c21c54aefef0e6f57.tar.bz2 |
[AST] Remove unused includes (NFC) (#141417)
These are identified by misc-include-cleaner. I've filtered out those
that break builds. Also, I'm staying away from llvm-config.h,
config.h, and Compiler.h, which likely cause platform- or
compiler-specific build failures.
Diffstat (limited to 'clang/lib/AST/CXXInheritance.cpp')
-rw-r--r-- | clang/lib/AST/CXXInheritance.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/AST/CXXInheritance.cpp b/clang/lib/AST/CXXInheritance.cpp index ab862d5..f037616 100644 --- a/clang/lib/AST/CXXInheritance.cpp +++ b/clang/lib/AST/CXXInheritance.cpp @@ -27,7 +27,6 @@ #include <algorithm> #include <cassert> #include <utility> -#include <vector> using namespace clang; |