Added address to debug memory allocator

Renamed 'free' in 'freeMemory' to avoid name clashes with some Microsoft debugging tools.
This commit is contained in:
ejcoumans
2007-12-14 01:45:13 +00:00
parent 051efde77a
commit 961c38269b
4 changed files with 13 additions and 10 deletions

View File

@@ -100,7 +100,7 @@ public:
*/
void * allocate(size_t size_bytes);
bool free(void * pointer);
bool freeMemory(void * pointer);
};
@@ -150,7 +150,7 @@ public:
*/
void * allocate(size_t size_bytes);
bool free(void * pointer);
bool freeMemory(void * pointer);
};