| 951 | private: |
| 952 | template<typename U> |
| 953 | static inline U* create() |
| 954 | { |
| 955 | auto p = (Traits::malloc)(sizeof(U)); |
| 956 | return p != nullptr ? new (p) U : nullptr; |
| 957 | } |
| 958 | |
| 959 | template<typename U, typename A1> |
| 960 | static inline U* create(A1&& a1) |
nothing calls this directly
no outgoing calls
no test coverage detected