diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-12-16 16:26:57 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-12-16 16:26:57 +0000 |
commit | 1d7fae6504a76b404a6f7d855b47ac62d5ee59aa (patch) | |
tree | aace1838b26399ae5cb46df9de54830e565caab8 /cpp/src | |
parent | Fixed build (diff) | |
download | ice-1d7fae6504a76b404a6f7d855b47ac62d5ee59aa.tar.bz2 ice-1d7fae6504a76b404a6f7d855b47ac62d5ee59aa.tar.xz ice-1d7fae6504a76b404a6f7d855b47ac62d5ee59aa.zip |
Fixed Windows build
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/TcpTransceiver.cpp | 2 | ||||
-rw-r--r-- | cpp/src/IceSSL/SslTransceiver.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/TcpTransceiver.cpp b/cpp/src/Ice/TcpTransceiver.cpp index c0c27294e62..b0196073949 100644 --- a/cpp/src/Ice/TcpTransceiver.cpp +++ b/cpp/src/Ice/TcpTransceiver.cpp @@ -47,7 +47,7 @@ IceInternal::TcpTransceiver::close() closeSocket(_fd); _fd = INVALID_SOCKET; } - catch(const SocketException& ex) + catch(const SocketException&) { _fd = INVALID_SOCKET; throw; diff --git a/cpp/src/IceSSL/SslTransceiver.cpp b/cpp/src/IceSSL/SslTransceiver.cpp index 13b3952b308..6987ea1102d 100644 --- a/cpp/src/IceSSL/SslTransceiver.cpp +++ b/cpp/src/IceSSL/SslTransceiver.cpp @@ -89,7 +89,7 @@ IceSSL::SslTransceiver::close() closeSocket(_fd); _fd = INVALID_SOCKET; } - catch(const SocketException& ex) + catch(const SocketException&) { _fd = INVALID_SOCKET; throw; |