1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

Get rid of DEL() and FREE() macros.

Part of CoreLibExe must die.
This commit is contained in:
Darryl Pogue
2011-10-23 20:52:33 -07:00
committed by Adam Johnson
parent be26b145df
commit 8a3f0cfd5b
88 changed files with 262 additions and 265 deletions

View File

@ -229,7 +229,7 @@ void IMarker::RecvGameDeleted (const Srv2Cli_Marker_GameDeleted & msg, void * pa
gameCliMsg->Send(gameCli->GetReceiver());
if (!msg.failed)
DEL(gameCli); // we're done
delete gameCli; // we're done
}
//============================================================================
@ -280,7 +280,7 @@ pfGmMarker::pfGmMarker (
//============================================================================
pfGmMarker::~pfGmMarker () {
DEL(internal);
delete internal;
}
//============================================================================
@ -464,4 +464,4 @@ void pfGmMarker::CaptureMarker (unsigned long markerID) {
msg.markerID = markerID;
GameMgrSend(&msg);
}
}