| 83 | typedef const_pointer const_iterator; |
| 84 | |
| 85 | explicit Array(MemoryPool& p) |
| 86 | : Storage(p), count(0), capacity(this->getStorageSize()), data(this->getStorage()) |
| 87 | { |
| 88 | // Ensure we can carry byte copy operations. |
| 89 | fb_assert(capacity < FB_MAX_SIZEOF / sizeof(T)); |
| 90 | } |
| 91 | |
| 92 | Array(MemoryPool& p, const size_type InitialCapacity) |
| 93 | : Storage(p), count(0), capacity(this->getStorageSize()), data(this->getStorage()) |
nothing calls this directly
no test coverage detected