From a6754f8e400f1a875864029ae8529890422a68a9 Mon Sep 17 00:00:00 2001 From: mcbarton <150042563+mcbarton@users.noreply.github.com> Date: Fri, 17 May 2024 20:43:32 +0100 Subject: [PATCH] debug --- unittests/CppInterOp/ScopeReflectionTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/CppInterOp/ScopeReflectionTest.cpp b/unittests/CppInterOp/ScopeReflectionTest.cpp index ac7c28925..28cc10bd5 100644 --- a/unittests/CppInterOp/ScopeReflectionTest.cpp +++ b/unittests/CppInterOp/ScopeReflectionTest.cpp @@ -664,7 +664,7 @@ TEST(ScopeReflectionTest, GetBaseClassOffset) { #define Stringify(s) Stringifyx(s) #define Stringifyx(...) #__VA_ARGS__ #define CODE \ - class A { int m_a; void foo(const int i) {UNUSED(i);}}; \ + class A { int m_a; void foo(const int m_a) {UNUSED(m_a);}}; \ class B { int m_b; }; \ class C : virtual A, virtual B { int m_c; }; \ class D : virtual A, virtual B, public C { int m_d; }; \