mirror of
https://github.com/google/googletest.git
synced 2025-11-08 06:14:47 -05:00
Fix extra ';' after member function definition
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user