diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/winrt/StreamEndpointI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/winrt/StreamEndpointI.cpp b/cpp/src/Ice/winrt/StreamEndpointI.cpp index aff7ac35972..84156e4f6f7 100644 --- a/cpp/src/Ice/winrt/StreamEndpointI.cpp +++ b/cpp/src/Ice/winrt/StreamEndpointI.cpp @@ -184,7 +184,7 @@ IceInternal::StreamEndpointI::acceptor(const string&) const ostringstream os; os << "SSL server endpoints are not supported with UWP applications"; ex.unsupportedFeature = os.str(); - throw ex; + throw ex; } return new StreamAcceptor(const_cast<StreamEndpointI*>(this), _instance, _host, _port); } |