Deallocates the storage obtained by a call to allocate() with arguments \a count and \a p.
| 262 | |
| 263 | /// Deallocates the storage obtained by a call to allocate() with arguments \a count and \a p. |
| 264 | void deallocate(pointer p, size_type count) { |
| 265 | space.rfree(static_cast<void*>(p), count); |
| 266 | } |
| 267 | |
| 268 | /* |
| 269 | * \brief Constructs an object |