| 3041 | |
| 3042 | template<typename U> |
| 3043 | static inline U* create() |
| 3044 | { |
| 3045 | auto p = (Traits::malloc)(sizeof(U)); |
| 3046 | return p != nullptr ? new (p) U : nullptr; |
| 3047 | } |
| 3048 | |
| 3049 | template<typename U, typename A1> |
| 3050 | static inline U* create(A1&& a1) |
no outgoing calls
no test coverage detected