| 162 | } |
| 163 | |
| 164 | StringValue StringValue::Clone(google::protobuf::Arena* absl_nonnull arena) const { |
| 165 | return StringValue(value_.Clone(arena)); |
| 166 | } |
| 167 | |
| 168 | int StringValue::Compare(absl::string_view string) const { |
| 169 | return value_.Compare(string); |
nothing calls this directly
no test coverage detected