Googletest export
Remove mention of unused type ProtocolMessage. PiperOrigin-RevId: 239242706
This commit is contained in:
		
				
					committed by
					
						
						Gennadiy Civil
					
				
			
			
				
	
			
			
			
						parent
						
							a4b63e7efb
						
					
				
				
					commit
					f1883b1824
				
			@@ -773,8 +773,8 @@ class SetErrnoAndReturnAction {
 | 
			
		||||
 | 
			
		||||
// Implements the SetArgumentPointee<N>(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 <size_t N, typename A, bool kIsProto>
 | 
			
		||||
class SetArgumentPointeeAction {
 | 
			
		||||
 public:
 | 
			
		||||
@@ -798,9 +798,7 @@ template <size_t N, typename Proto>
 | 
			
		||||
class SetArgumentPointeeAction<N, Proto, true> {
 | 
			
		||||
 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);
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
@@ -57,8 +57,6 @@
 | 
			
		||||
# include <sys/types.h>  // For ssize_t. NOLINT
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
class ProtocolMessage;
 | 
			
		||||
 | 
			
		||||
namespace proto2 {
 | 
			
		||||
class Message;
 | 
			
		||||
}  // namespace proto2
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user