summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Network.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Network.cpp')
-rw-r--r--cpp/src/Ice/Network.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/Ice/Network.cpp b/cpp/src/Ice/Network.cpp
index 564c9c20b62..4108dd23053 100644
--- a/cpp/src/Ice/Network.cpp
+++ b/cpp/src/Ice/Network.cpp
@@ -722,6 +722,13 @@ IceInternal::NativeInfo::completed(SocketOperation operation)
throw ex;
}
}
+#elif defined(ICE_OS_WINRT)
+void
+IceInternal::NativeInfo::completed(SocketOperation operation)
+{
+ assert(_completedHandler);
+ _completedHandler(operation);
+}
#endif
IceUtil::Shared* IceInternal::upCast(NetworkProxy* p) { return p; }