From 83e7ca3dc80bcb45bb75e0f0d9fc7fb4723f7293 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 11 Nov 2009 20:53:23 +0000 Subject: (svn r18042) -Cleanup: remove some stale comments --- src/core/alloc_type.hpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/core/alloc_type.hpp') diff --git a/src/core/alloc_type.hpp b/src/core/alloc_type.hpp index b1b27c194..9cac62758 100644 --- a/src/core/alloc_type.hpp +++ b/src/core/alloc_type.hpp @@ -170,18 +170,12 @@ public: /** * 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); } }; -- cgit v1.2.3-54-g00ecf