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