| 247 | } |
| 248 | |
| 249 | static BytesBaseCell MoveFromAny(TVMFFIAny* src) { |
| 250 | BytesBaseCell result(*src); |
| 251 | src->type_index = TypeIndex::kTVMFFINone; |
| 252 | src->zero_padding = 0; |
| 253 | src->v_int64 = 0; |
| 254 | return result; |
| 255 | } |
| 256 | |
| 257 | private: |
| 258 | explicit BytesBaseCell(TVMFFIAny data) : data_(data) {} |
nothing calls this directly
no outgoing calls
no test coverage detected