diff options
| author | Sheikh Dawood Abdul Ajees <[email protected]> | 2018-01-26 19:43:03 -0600 |
|---|---|---|
| committer | Sheikh Dawood Abdul Ajees <[email protected]> | 2018-01-26 19:43:03 -0600 |
| commit | b6db9a56548cd1c41bee309e721d76ea2c9320da (patch) | |
| tree | 1f0436b187db50c21e576b4f4d491530113c91bc /PxShared/src/foundation | |
| parent | PhysX 3.4.1, APEX 1.4.1 Release @23307153 (diff) | |
| download | physx-3.4-b6db9a56548cd1c41bee309e721d76ea2c9320da.tar.xz physx-3.4-b6db9a56548cd1c41bee309e721d76ea2c9320da.zip | |
PhysX 3.4, APEX 1.4 patch release @23472123
Diffstat (limited to 'PxShared/src/foundation')
| -rw-r--r-- | PxShared/src/foundation/src/windows/PsWindowsSocket.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/PxShared/src/foundation/src/windows/PsWindowsSocket.cpp b/PxShared/src/foundation/src/windows/PsWindowsSocket.cpp index 8654a7e4..74be26b7 100644 --- a/PxShared/src/foundation/src/windows/PsWindowsSocket.cpp +++ b/PxShared/src/foundation/src/windows/PsWindowsSocket.cpp @@ -120,10 +120,6 @@ void SocketImpl::setBlockingInternal(SOCKET socket, bool blocking) ioctlsocket(socket, FIONBIO, (u_long*)&mode); } -#ifdef PX_VC11 -#pragma warning(push) -#pragma warning(disable : 4548) // for FD_SET on vc11 only -#endif bool SocketImpl::connect(const char* host, uint16_t port, uint32_t timeout) { if(!mSocketLayerIntialized) @@ -185,9 +181,6 @@ bool SocketImpl::connect(const char* host, uint16_t port, uint32_t timeout) mHost = host; return true; } -#ifdef PX_VC11 -#pragma warning(pop) -#endif bool SocketImpl::listen(uint16_t port) { |