| 7342 | |
| 7343 | template <typename... Args> |
| 7344 | void construct(Args&&... args) |
| 7345 | { |
| 7346 | new (&data) T(std::forward<Args>(args)...); |
| 7347 | } |
| 7348 | |
| 7349 | template <bool AllowManualDestruction = !Destruct> |
| 7350 | typename std::enable_if<AllowManualDestruction>::type destruct() |
nothing calls this directly
no outgoing calls
no test coverage detected