diff options
author | rubidium <rubidium@openttd.org> | 2009-11-11 20:53:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-11 20:53:23 +0000 |
commit | 83e7ca3dc80bcb45bb75e0f0d9fc7fb4723f7293 (patch) | |
tree | b36f83480a0142c092b7ac9609dcb43739448a0d /src/core | |
parent | ac25ba62d2c6e1e19d3b1bbc5978b976348611c1 (diff) | |
download | openttd-83e7ca3dc80bcb45bb75e0f0d9fc7fb4723f7293.tar.xz |
(svn r18042) -Cleanup: remove some stale comments
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/alloc_type.hpp | 6 |
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); } }; |