| 272 | static_assert(sizeof(ValueType) == 1, "data basic type must char"); |
| 273 | |
| 274 | IndexedDataImpl() = default; |
| 275 | IndexedDataImpl(util::vector_view<BlockReference> blocks_, util::vector_view<ValueType> values_) |
| 276 | : blocks(std::move(blocks_)), values(std::move(values_)) |
| 277 | { |
nothing calls this directly
no test coverage detected