| 56 | } // namespace |
| 57 | |
| 58 | BytesValue BytesValue::Concat(const BytesValue& lhs, const BytesValue& rhs, |
| 59 | google::protobuf::Arena* absl_nonnull arena) { |
| 60 | return BytesValue( |
| 61 | common_internal::ByteString::Concat(lhs.value_, rhs.value_, arena)); |
| 62 | } |
| 63 | |
| 64 | std::string BytesValue::DebugString() const { return BytesDebugString(*this); } |
| 65 |