summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/alloc_type.hpp6
1 files changed, 0 insertions, 6 deletions
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); }
};