changeset 13523:04893d6463c9 draft

(svn r18042) -Cleanup: remove some stale comments
author rubidium <rubidium@openttd.org>
date Wed, 11 Nov 2009 20:53:23 +0000
parents a59c95f8d236
children 726fda0da73c
files src/core/alloc_type.hpp
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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); }
 };