| 108 | class BytesBaseCell { |
| 109 | public: |
| 110 | BytesBaseCell() { |
| 111 | // initialize to none |
| 112 | data_.type_index = TypeIndex::kTVMFFINone; |
| 113 | data_.zero_padding = 0; |
| 114 | data_.v_int64 = 0; |
| 115 | } |
| 116 | |
| 117 | explicit BytesBaseCell(std::nullopt_t) { |
| 118 | data_.type_index = TypeIndex::kTVMFFINone; |
nothing calls this directly
no outgoing calls
no test coverage detected