I read compressed data from disk, uncompress it, and create a "Cell" object that was generated from a FlatBuffer scheme.
Cell* getCell(int x, int y, int z) {
// ...
return GetCell(buffer); // buffer is an inflated uint_8 data array
}
So far so good. But how can I delete the item? Since it's not possible to access the buffer data later on.