MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / create

Function create

Source/ThirdParty/concurrentqueue.h:3043–3047  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 9

copyMethod · 0.85
resizeMethod · 0.85
copyMethod · 0.85
resizeMethod · 0.85
resetMethod · 0.85
pugixml.cppFile · 0.85
EdgeHolderMethod · 0.85
AssimpLogStreamMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected