From ae800912831973235f0833eb154e82ba6bc2482a Mon Sep 17 00:00:00 2001 From: mcbarton Date: Mon, 17 Mar 2025 13:05:07 +0000 Subject: [PATCH] Remove unimplemented ReportInvokeEnd --- include/clang/Interpreter/CppInterOp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Interpreter/CppInterOp.h b/include/clang/Interpreter/CppInterOp.h index 76b5f973f..ccd300702 100644 --- a/include/clang/Interpreter/CppInterOp.h +++ b/include/clang/Interpreter/CppInterOp.h @@ -134,7 +134,7 @@ namespace Cpp { void ReportInvokeStart(void* result, ArgList args, void* self) const; void ReportInvokeStart(void* object, unsigned long nary, int withFree) const; - void ReportInvokeEnd() const; + public: Kind getKind() const { return m_Kind; } bool isValid() const { return getKind() != kUnknown; }