Added address to debug memory allocator
Renamed 'free' in 'freeMemory' to avoid name clashes with some Microsoft debugging tools.
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user