| 3626 | |
| 3627 | template<typename U> |
| 3628 | static inline U* create() |
| 3629 | { |
| 3630 | void* p = aligned_malloc<U>(sizeof(U)); |
| 3631 | return p != nullptr ? new (p) U : nullptr; |
| 3632 | } |
| 3633 | |
| 3634 | template<typename U, typename A1> |
| 3635 | static inline U* create(A1&& a1) |
no outgoing calls