whitlock 2004/10/14 08:45:03
Modified: c/src/engine Axis.cpp
Log:
Make the engine pure C++. Replace malloc/free/strdup with new/delete.
Revision Changes Path
1.74 +0 -1 ws-axis/c/src/engine/Axis.cpp
Index: Axis.cpp
===================================================================
RCS file: /home/cvs/ws-axis/c/src/engine/Axis.cpp,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- Axis.cpp 4 Oct 2004 15:30:34 -0000 1.73
+++ Axis.cpp 14 Oct 2004 15:45:03 -0000 1.74
@@ -41,7 +41,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include <malloc.h>
#include <axis/server/Packet.h>
#include <string>
#include <map>
|