Remove ScopedPointer, ContainerDeletePolicy

This commit is contained in:
Vinnie Falco
2014-06-15 18:34:54 -07:00
parent 58ec5d5afe
commit 55ca9fb090
9 changed files with 17 additions and 348 deletions

View File

@@ -43,7 +43,7 @@ void zerostruct (Type& structure) noexcept
/** Delete an object pointer, and sets the pointer to null.
Remember that it's not good c++ practice to use delete directly - always try to use a ScopedPointer
Remember that it's not good c++ practice to use delete directly - always try to use a std::unique_ptr
or other automatic lifetime-management system rather than resorting to deleting raw pointers!
*/
template <typename Type>