From eadd505b0c054eacba7d0349505ea9ca1acf54f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Timm=20B=C3=A4der?= Date: Fri, 16 Sep 2022 18:21:16 +0200 Subject: [PATCH] [clang][Interp][NFC] Limit includes to neccessary ones --- clang/lib/AST/Interp/Record.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/lib/AST/Interp/Record.h b/clang/lib/AST/Interp/Record.h index 9cdee90..db559d7 100644 --- a/clang/lib/AST/Interp/Record.h +++ b/clang/lib/AST/Interp/Record.h @@ -13,7 +13,8 @@ #ifndef LLVM_CLANG_AST_INTERP_RECORD_H #define LLVM_CLANG_AST_INTERP_RECORD_H -#include "Pointer.h" +#include "clang/AST/Decl.h" +#include "Descriptor.h" namespace clang { namespace interp { -- 2.7.4