diff options
author | John McCall <rjmccall@apple.com> | 2010-08-25 23:44:00 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-08-25 23:44:00 +0000 |
commit | 679063472244a6cb6d4b52894ac020022690620d (patch) | |
tree | 797a667e5dca91088899c2dc6e8e10e338ac6e01 /lib/Sema/Sema.cpp | |
parent | 8028bfaa96f3dbe224cc3766a04e9a68f22e4a64 (diff) |
Pull DelayedDiagnostic and AccessedEntity out into their own header.
This works courtesy of the new SmallVector<..., 0> specialization that
doesn't require a complete type. Note that you'll need to pull at least
SmallVector.h from LLVM to compile successfully.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.cpp')
-rw-r--r-- | lib/Sema/Sema.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/Sema.cpp b/lib/Sema/Sema.cpp index fd6dcfc095..2de4d28cab 100644 --- a/lib/Sema/Sema.cpp +++ b/lib/Sema/Sema.cpp @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#include "clang/Sema/Sema.h" -#include "clang/Sema/SemaDiagnostic.h" +#include "clang/Sema/SemaInternal.h" +#include "clang/Sema/DelayedDiagnostic.h" #include "TargetAttributesSema.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallSet.h" |