Destructor
| 289 | |
| 290 | // Destructor |
| 291 | ~deque() FL_NOEXCEPT { |
| 292 | clear(); |
| 293 | if (mData) { |
| 294 | mResource->deallocate(mData, mCapacity * sizeof(T)); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | // Assignment operators |
| 299 | deque& operator=(const deque& other) FL_NOEXCEPT { |
nothing calls this directly
no test coverage detected