From 3abc68be30e3dda7508299956a422e8d0ee693ca Mon Sep 17 00:00:00 2001 From: qubka Date: Sun, 25 May 2025 10:54:54 +0100 Subject: [PATCH] Fix extra ';' after member function definition --- googlemock/test/gmock-actions_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlemock/test/gmock-actions_test.cc b/googlemock/test/gmock-actions_test.cc index 46b0e9187..8fa3fbacc 100644 --- a/googlemock/test/gmock-actions_test.cc +++ b/googlemock/test/gmock-actions_test.cc @@ -188,7 +188,7 @@ TEST(TypeTraits, IsInvocableRV) { struct C { int operator()() const { return 0; } void operator()(int) & {} - std::string operator()(int) && { return ""; }; + std::string operator()(int) && { return ""; } }; // The first overload is callable for const and non-const rvalues and lvalues.