(svn r18040) -Codechange: the size parameter (if it's that actually) isn't needed for the delete operator

This commit is contained in:
rubidium
2009-11-11 20:40:40 +00:00
parent c5ebac830a
commit 8f9157b648
2 changed files with 3 additions and 5 deletions

View File

@@ -170,22 +170,20 @@ public:
/**
* Memory release for a single class instance.
* @param ptr the memory to free.
* @param size the amount of allocated memory (unused).
*
* @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, size_t size) { free(ptr); }
FORCEINLINE void operator delete(void *ptr) { free(ptr); }
/**
* Memory release for an array of class instances.
* @param ptr the memory to free.
* @param size the amount of allocated memory (unused).
*
* @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, size_t size) { free(ptr); }
FORCEINLINE void operator delete[](void *ptr) { free(ptr); }
};
#endif /* ALLOC_TYPE_HPP */