Changeset - r13513:b97d34088751
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-11-11 20:53:23
rubidium@openttd.org
(svn r18042) -Cleanup: remove some stale comments
1 file changed with 0 insertions and 6 deletions:
0 comments (0 inline, 0 general)
src/core/alloc_type.hpp
Show inline comments
 
@@ -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); }
 
};
0 comments (0 inline, 0 general)