diff --git a/clang/lib/AST/Interp/Source.h b/clang/lib/AST/Interp/Source.h index a836eb09db7f8..3ca6dfd06402a 100644 --- a/clang/lib/AST/Interp/Source.h +++ b/clang/lib/AST/Interp/Source.h @@ -14,11 +14,17 @@ #define LLVM_CLANG_AST_INTERP_SOURCE_H #include "PrimType.h" -#include "clang/AST/Decl.h" -#include "clang/AST/Stmt.h" +#include "llvm/ADT/PointerUnion.h" #include "llvm/Support/Endian.h" namespace clang { + +class Decl; +class Stmt; +class SourceLocation; +class Expr; +class SourceRange; + namespace interp { class Function;