summaryrefslogtreecommitdiffhomepage
path: root/NetEx/NetSock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'NetEx/NetSock.cpp')
-rw-r--r--NetEx/NetSock.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/NetEx/NetSock.cpp b/NetEx/NetSock.cpp
index 9a6f7e9..5d4f35d 100644
--- a/NetEx/NetSock.cpp
+++ b/NetEx/NetSock.cpp
@@ -15,7 +15,6 @@
// WINSOCK2.H MUST COME FIRST!!
#include <winsock2.h>
-#include "MemDebug.h"
#include "NetSock.h"
#include "NetLayer.h"
@@ -111,7 +110,7 @@ NetSock::accept(NetAddr* addr)
if (conn == INVALID_SOCKET)
return 0;
- return new(__FILE__,__LINE__) NetSock(conn, stream);
+ return new NetSock(conn, stream);
}
// +--------------------------------------------------------------------+