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 | 6b48873d500cba9c278e1c7518fe963918eb6c49 (patch) | |
tree | 48b64aa0e24813bdbbdab95c9ef1ba49e36d925b /clang/lib/Sema/Sema.cpp | |
parent | c7fb446a9d5f678d82e7bcb82d66d3d66d529311 (diff) | |
download | bcm5719-llvm-6b48873d500cba9c278e1c7518fe963918eb6c49.tar.gz bcm5719-llvm-6b48873d500cba9c278e1c7518fe963918eb6c49.zip |
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.
llvm-svn: 112114
Diffstat (limited to 'clang/lib/Sema/Sema.cpp')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index fd6dcfc0956..2de4d28cab6 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/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" |