| 70 | } // namespace |
| 71 | |
| 72 | StringValue StringValue::Concat(const StringValue& lhs, const StringValue& rhs, |
| 73 | google::protobuf::Arena* absl_nonnull arena) { |
| 74 | return StringValue( |
| 75 | common_internal::ByteString::Concat(lhs.value_, rhs.value_, arena)); |
| 76 | } |
| 77 | |
| 78 | std::string StringValue::DebugString() const { |
| 79 | return StringDebugString(*this); |
nothing calls this directly
no test coverage detected