| 7406 | |
| 7407 | template <typename... Args> |
| 7408 | void construct(Args&&... args) |
| 7409 | { |
| 7410 | new (&data) T(std::forward<Args>(args)...); |
| 7411 | } |
| 7412 | |
| 7413 | template <bool AllowManualDestruction = !Destruct> |
| 7414 | typename std::enable_if<AllowManualDestruction>::type destruct() |
nothing calls this directly
no outgoing calls
no test coverage detected