From: Benjamin Kramer Date: Tue, 2 Jul 2019 08:01:41 +0000 (+0000) Subject: [ASTImporter] Make headers self-contained X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5691a59717d6548ddf97e1926bba9eb8812753b6;p=clang [ASTImporter] Make headers self-contained git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@364891 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/ASTImporter.h b/include/clang/AST/ASTImporter.h index 21b1bbbfd7..68dbc47c8e 100644 --- a/include/clang/AST/ASTImporter.h +++ b/include/clang/AST/ASTImporter.h @@ -14,6 +14,7 @@ #ifndef LLVM_CLANG_AST_ASTIMPORTER_H #define LLVM_CLANG_AST_ASTIMPORTER_H +#include "clang/AST/DeclBase.h" #include "clang/AST/DeclarationName.h" #include "clang/AST/NestedNameSpecifier.h" #include "clang/AST/TemplateName.h" diff --git a/include/clang/AST/ASTImporterSharedState.h b/include/clang/AST/ASTImporterSharedState.h index e384950590..3635a62dee 100644 --- a/include/clang/AST/ASTImporterSharedState.h +++ b/include/clang/AST/ASTImporterSharedState.h @@ -16,6 +16,7 @@ #define LLVM_CLANG_AST_ASTIMPORTERSHAREDSTATE_H #include "clang/AST/ASTImporterLookupTable.h" +#include "clang/AST/Decl.h" #include "llvm/ADT/DenseMap.h" // FIXME We need this because of ImportError. #include "clang/AST/ASTImporter.h"