| 153 | } |
| 154 | |
| 155 | void freeData() |
| 156 | { |
| 157 | // CVC: Warning, after this call, "data" is an invalid pointer, be sure to reassign it |
| 158 | // or make it equal to this->getStorage() |
| 159 | if (data != this->getStorage()) |
| 160 | Firebird::MemoryPool::globalFree(data); |
| 161 | } |
| 162 | |
| 163 | void copyFrom(const Array<T, Storage>& source) |
| 164 | { |
nothing calls this directly
no test coverage detected