# HG changeset patch # User rubidium # Date 1257972803 0 # Node ID 04893d6463c9c2867c58f05e64ba01b359afb8b1 # Parent a59c95f8d2367af615c5af9951b139929e8e8d13 (svn r18042) -Cleanup: remove some stale comments diff --git a/src/core/alloc_type.hpp b/src/core/alloc_type.hpp --- a/src/core/alloc_type.hpp +++ b/src/core/alloc_type.hpp @@ -170,18 +170,12 @@ /** * Memory release for a single class instance. * @param ptr the memory to free. - * - * @warning The value of the \a size parameter can only be trusted for - * classes that have their own (virtual) destructor method. */ FORCEINLINE void operator delete(void *ptr) { free(ptr); } /** * Memory release for an array of class instances. * @param ptr the memory to free. - * - * @warning The value of the \a size parameter can only be trusted for - * classes that have their own (virtual) destructor method. */ FORCEINLINE void operator delete[](void *ptr) { free(ptr); } };