| 501 | |
| 502 | void construct(pointer p, const T& val) { new ((T*)p) T(val); } |
| 503 | void destroy(pointer p) { p->~T(); } |
| 504 | size_type max_size() const { return size_t(-1); } |
| 505 | |
| 506 | template <typename U> |
nothing calls this directly
no outgoing calls
no test coverage detected