| 1255 | |
| 1256 | template <typename Alloc, typename T, typename... Args> |
| 1257 | inline void call_construct(Alloc&, T* address, BOOST_FWD_REF(Args)... args) |
| 1258 | { |
| 1259 | new ((void*)address) T(boost::forward<Args>(args)...); |
| 1260 | } |
| 1261 | |
| 1262 | template <typename Alloc, typename T> inline void call_destroy(Alloc&, T* x) |
| 1263 | { |
no outgoing calls
no test coverage detected