From fa98e2861dadaf436b0eb4b38e96a2ccf7c41072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Thu, 1 Feb 2024 08:03:32 +0100 Subject: [PATCH] [clang][Interp][NFC] Remove unused RecordScope --- clang/lib/AST/Interp/ByteCodeExprGen.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/clang/lib/AST/Interp/ByteCodeExprGen.h b/clang/lib/AST/Interp/ByteCodeExprGen.h index 971fd09bdfac50..ec88f31ae516ae 100644 --- a/clang/lib/AST/Interp/ByteCodeExprGen.h +++ b/clang/lib/AST/Interp/ByteCodeExprGen.h @@ -30,7 +30,6 @@ namespace interp { template class LocalScope; template class DestructorScope; -template class RecordScope; template class VariableScope; template class DeclScope; template class OptionScope; @@ -219,7 +218,6 @@ class ByteCodeExprGen : public ConstStmtVisitor, bool>, friend class VariableScope; friend class LocalScope; friend class DestructorScope; - friend class RecordScope; friend class DeclScope; friend class OptionScope; friend class ArrayIndexScope;