| 305 | |
| 306 | // for placement new |
| 307 | template <class T, class ... Args> inline |
| 308 | static void construct( T *& ptr, Args && ... args ) |
| 309 | { |
| 310 | new (ptr) T( std::forward<Args>( args )... ); |
| 311 | } |
| 312 | |
| 313 | // for non-placement new with a default constructor |
| 314 | template <class T> inline |
nothing calls this directly
no outgoing calls
no test coverage detected