| 3604 | |
| 3605 | template<typename U> |
| 3606 | static inline U *create() { |
| 3607 | auto p = (Traits::malloc)(sizeof(U)); |
| 3608 | return p != nullptr ? new(p) U : nullptr; |
| 3609 | } |
| 3610 | |
| 3611 | template<typename U, typename A1> |
| 3612 | static inline U *create(A1 &&a1) { |
nothing calls this directly
no outgoing calls
no test coverage detected