Merge pull request #2285 from tomalakgeretkal:c++17-fix

PiperOrigin-RevId: 253067038
pull/2286/head^2
Gennadiy Civil 6 years ago
commit 84a498decc
  1. 4
      googlemock/test/gmock-matchers_test.cc

@ -4266,8 +4266,8 @@ TEST(ResultOfTest, WorksForFunctionReferences) {
// Tests that ResultOf(f, ...) compiles and works as expected when f is a
// function object.
struct Functor : public ::std::unary_function<int, std::string> {
result_type operator()(argument_type input) const {
struct Functor {
std::string operator()(int input) const {
return IntToStringFunction(input);
}
};

Loading…
Cancel
Save