Skip to content

Commit 3abc68b

Browse files
committed
Fix extra ';' after member function definition
1 parent 09ffd00 commit 3abc68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

googlemock/test/gmock-actions_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ TEST(TypeTraits, IsInvocableRV) {
188188
struct C {
189189
int operator()() const { return 0; }
190190
void operator()(int) & {}
191-
std::string operator()(int) && { return ""; };
191+
std::string operator()(int) && { return ""; }
192192
};
193193

194194
// The first overload is callable for const and non-const rvalues and lvalues.

0 commit comments

Comments
 (0)