| 37 | namespace cel::test { |
| 38 | |
| 39 | ABSL_MUST_USE_RESULT |
| 40 | inline bool UnsafeConvertWireCompatProto( |
| 41 | const google::protobuf::MessageLite& src, google::protobuf::MessageLite* absl_nonnull dest) { |
| 42 | absl::Cord serialized; |
| 43 | return src.SerializePartialToCord(&serialized) && |
| 44 | dest->ParsePartialFromCord(serialized); |
| 45 | } |
| 46 | |
| 47 | ABSL_MUST_USE_RESULT |
| 48 | inline bool ConvertWireCompatProto( |
no outgoing calls
no test coverage detected