| 60 | } |
| 61 | |
| 62 | void verify() |
| 63 | { |
| 64 | EmbeddedTreeAlgorithms<Data, Handler> alg(m_data, m_dataSize, m_centralFreeItem); |
| 65 | alg.verifyTreeConsistent(); |
| 66 | alg.verifyOrder(); |
| 67 | } |
| 68 | |
| 69 | ///Returns the underlying array. That array may contain invalid/free items. |
| 70 | const Data* data() const |
nothing calls this directly
no test coverage detected