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

Function rcDelete

Source/ThirdParty/recastnavigation/Recast.cpp:43–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41/// @param[in] ptr The object pointer to delete.
42template<typename T>
43void rcDelete(T* ptr)
44{
45 if (ptr)
46 {
47 ptr->~T();
48 rcFree((void*)ptr);
49 }
50}
51} // anonymous namespace
52
53float rcSqrt(float x)

Callers 5

rcFreeHeightFieldFunction · 0.85
rcFreeCompactHeightfieldFunction · 0.85
rcFreeContourSetFunction · 0.85
rcFreePolyMeshFunction · 0.85

Calls 1

rcFreeFunction · 0.85

Tested by

no test coverage detected