mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-20 04:09:16 +00:00
Get rid of DEL() and FREE() macros.
Part of CoreLibExe must die.
This commit is contained in:
@ -166,7 +166,7 @@ CLockWaitSetAllocator::CLockWaitSetAllocator (CLockWaitSetAllocator * prev) {
|
||||
|
||||
//===========================================================================
|
||||
CLockWaitSetAllocator::~CLockWaitSetAllocator () {
|
||||
DEL(m_prev);
|
||||
delete m_prev;
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
@ -207,7 +207,7 @@ void CLockWaitSetAllocator::Shutdown () {
|
||||
// Free all allocators
|
||||
while (s_allocator) {
|
||||
CLockWaitSetAllocator * prev = s_allocator->m_prev;
|
||||
DEL(s_allocator);
|
||||
delete s_allocator;
|
||||
s_allocator = prev;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user