| 167 | #if defined(BOOST_LIBSTDCXX_VERSION) && BOOST_LIBSTDCXX_VERSION < 60000 |
| 168 | template<class U, class... Args> |
| 169 | void |
| 170 | construct(U* ptr, Args&&... args) |
| 171 | { |
| 172 | ::new(static_cast<void*>(ptr)) U( |
| 173 | std::forward<Args>(args)...); |
| 174 | } |
| 175 | |
| 176 | template<class U> |
| 177 | void |
nothing calls this directly
no outgoing calls
no test coverage detected