(svn r18042) -Cleanup: remove some stale comments

This commit is contained in:
rubidium 2009-11-11 20:53:23 +00:00
parent ac25ba62d2
commit 83e7ca3dc8
1 changed files with 0 additions and 6 deletions

View File

@ -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); }
};