From f1883b1824109338db40837bdb61f0150e395bb7 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Tue, 19 Mar 2019 15:13:51 -0400 Subject: Googletest export Remove mention of unused type ProtocolMessage. PiperOrigin-RevId: 239242706 --- googlemock/include/gmock/gmock-actions.h | 8 +++----- googlemock/test/gmock-internal-utils_test.cc | 2 -- 2 files changed, 3 insertions(+), 7 deletions(-) (limited to 'googlemock') diff --git a/googlemock/include/gmock/gmock-actions.h b/googlemock/include/gmock/gmock-actions.h index 2f936a15..8513e01f 100644 --- a/googlemock/include/gmock/gmock-actions.h +++ b/googlemock/include/gmock/gmock-actions.h @@ -773,8 +773,8 @@ class SetErrnoAndReturnAction { // Implements the SetArgumentPointee(x) action for any function // whose N-th argument (0-based) is a pointer to x's type. The -// template parameter kIsProto is true iff type A is ProtocolMessage, -// proto2::Message, or a sub-class of those. +// template parameter kIsProto is true iff type A is +// proto2::Message or a sub-class of it. template class SetArgumentPointeeAction { public: @@ -798,9 +798,7 @@ template class SetArgumentPointeeAction { public: // Constructs an action that sets the variable pointed to by the - // N-th function argument to 'proto'. Both ProtocolMessage and - // proto2::Message have the CopyFrom() method, so the same - // implementation works for both. + // N-th function argument to 'proto'. explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) { proto_->CopyFrom(proto); } diff --git a/googlemock/test/gmock-internal-utils_test.cc b/googlemock/test/gmock-internal-utils_test.cc index 75dd8088..a76e777c 100644 --- a/googlemock/test/gmock-internal-utils_test.cc +++ b/googlemock/test/gmock-internal-utils_test.cc @@ -57,8 +57,6 @@ # include // For ssize_t. NOLINT #endif -class ProtocolMessage; - namespace proto2 { class Message; } // namespace proto2 -- cgit v1.2.3