@@ -95,14 +95,14 @@ TEST(FunctionReflectionTest, GetClassMethods) {
9595 Cpp::GetClassMethods (Decls[4 ], methods3);
9696
9797 EXPECT_EQ (methods3.size (), 9 );
98- EXPECT_EQ (get_method_name (methods3[0 ]), " B::B(int n )" );
99- EXPECT_EQ (get_method_name (methods3[1 ]), " inline constexpr B::B (const B &)" );
100- EXPECT_EQ (get_method_name (methods3[3 ]), " inline C::C()" );
101- EXPECT_EQ (get_method_name (methods3[4 ]), " inline constexpr C::C (const C &)" );
102- EXPECT_EQ (get_method_name (methods3[5 ]), " inline constexpr C::C (C &&)" );
103- EXPECT_EQ (get_method_name (methods3[6 ]), " inline C &C::operator=(const C & )" );
104- EXPECT_EQ (get_method_name (methods3[7 ]), " inline C &C::operator=(C && )" );
105- EXPECT_EQ (get_method_name (methods3[8 ]), " inline C::~C( )" );
98+ EXPECT_EQ (get_method_name (methods3[0 ]), " inline C::C( )" );
99+ EXPECT_EQ (get_method_name (methods3[1 ]), " inline constexpr C::C (const C &)" );
100+ EXPECT_EQ (get_method_name (methods3[2 ]), " inline constexpr C::C(C && )" );
101+ EXPECT_EQ (get_method_name (methods3[3 ]), " inline C & C::operator= (const C &)" );
102+ EXPECT_EQ (get_method_name (methods3[4 ]), " inline C & C::operator= (C &&)" );
103+ EXPECT_EQ (get_method_name (methods3[5 ]), " inline C::~C( )" );
104+ EXPECT_EQ (get_method_name (methods3[6 ]), " inline C::B(int )" );
105+ EXPECT_EQ (get_method_name (methods3[7 ]), " inline constexpr C::B(const B & )" );
106106
107107 // Should not crash.
108108 std::vector<Cpp::TCppFunction_t> methods4;
0 commit comments