diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-15 06:34:37 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-15 06:34:37 +0000 |
commit | 7745cab137b9d91205f13a7adaebe6ed801595f7 (patch) | |
tree | 8bf659b927bcd860f4b066b0a6ee06ee5ba4c287 /include/clang/AST | |
parent | a8285a88647805b294e946527ecee8e5ececc4ff (diff) |
Make a few headers parse standalone
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88832 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST')
-rw-r--r-- | include/clang/AST/DeclContextInternals.h | 2 | ||||
-rw-r--r-- | include/clang/AST/RecordLayout.h | 1 | ||||
-rw-r--r-- | include/clang/AST/Redeclarable.h | 1 | ||||
-rw-r--r-- | include/clang/AST/TypeLocBuilder.h | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/include/clang/AST/DeclContextInternals.h b/include/clang/AST/DeclContextInternals.h index a9e3acc943..c2b48cee36 100644 --- a/include/clang/AST/DeclContextInternals.h +++ b/include/clang/AST/DeclContextInternals.h @@ -14,9 +14,9 @@ #ifndef LLVM_CLANG_AST_DECLCONTEXTINTERNALS_H #define LLVM_CLANG_AST_DECLCONTEXTINTERNALS_H -#include "clang/AST/DeclBase.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclarationName.h" +#include "clang/AST/DeclCXX.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/PointerUnion.h" #include "llvm/ADT/SmallVector.h" diff --git a/include/clang/AST/RecordLayout.h b/include/clang/AST/RecordLayout.h index 5f318ba0b3..e56a1c0ae5 100644 --- a/include/clang/AST/RecordLayout.h +++ b/include/clang/AST/RecordLayout.h @@ -15,6 +15,7 @@ #define LLVM_CLANG_AST_LAYOUTINFO_H #include "llvm/System/DataTypes.h" +#include "llvm/ADT/DenseMap.h" namespace clang { class ASTContext; diff --git a/include/clang/AST/Redeclarable.h b/include/clang/AST/Redeclarable.h index c04f3cd4e3..867932332d 100644 --- a/include/clang/AST/Redeclarable.h +++ b/include/clang/AST/Redeclarable.h @@ -15,6 +15,7 @@ #define LLVM_CLANG_AST_REDECLARABLE_H #include "llvm/ADT/PointerIntPair.h" +#include <iterator> namespace clang { diff --git a/include/clang/AST/TypeLocBuilder.h b/include/clang/AST/TypeLocBuilder.h index 4e1fbaaf4c..00e2b7f832 100644 --- a/include/clang/AST/TypeLocBuilder.h +++ b/include/clang/AST/TypeLocBuilder.h @@ -17,6 +17,7 @@ #include "clang/AST/TypeLoc.h" #include "llvm/ADT/SmallVector.h" +#include "clang/AST/ASTContext.h" namespace clang { |