* \brief Allocates storage * * Returns a pointer to the first element in a block of storage * count*sizeof(T) bytes in size. The block is aligned * appropriately for objects of type \a T. Throws the exception * \a bad_alloc if the storage is unavailable. */
| 242 | * \a bad_alloc if the storage is unavailable. |
| 243 | */ |
| 244 | pointer allocate(size_type count) { |
| 245 | return static_cast<pointer>(space.ralloc(sizeof(T)*count)); |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * \brief Allocates storage |