| 928 | } |
| 929 | |
| 930 | void ByteString::Destroy() { |
| 931 | switch (GetKind()) { |
| 932 | case ByteStringKind::kSmall: |
| 933 | break; |
| 934 | case ByteStringKind::kMedium: |
| 935 | DestroyMedium(); |
| 936 | break; |
| 937 | case ByteStringKind::kLarge: |
| 938 | DestroyLarge(); |
| 939 | break; |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | void ByteString::SetSmall(google::protobuf::Arena* absl_nullable arena, |
| 944 | absl::string_view string) { |
nothing calls this directly
no test coverage detected