summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src')
-rw-r--r--cppe/src/IceE/Outgoing.cpp6
-rw-r--r--cppe/src/IceE/Reference.cpp5
2 files changed, 7 insertions, 4 deletions
diff --git a/cppe/src/IceE/Outgoing.cpp b/cppe/src/IceE/Outgoing.cpp
index 9b23e91b8a3..3c52bc3a04f 100644
--- a/cppe/src/IceE/Outgoing.cpp
+++ b/cppe/src/IceE/Outgoing.cpp
@@ -58,7 +58,8 @@ IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const st
break;
}
#endif
- default:
+ case Reference::ModeDatagram:
+ case Reference::ModeBatchDatagram:
{
//
// TODO: Should this assert?
@@ -250,7 +251,8 @@ IceInternal::Outgoing::invoke()
break;
}
#endif
- default:
+ case Reference::ModeDatagram:
+ case Reference::ModeBatchDatagram:
{
//
// TODO: Should this assert?
diff --git a/cppe/src/IceE/Reference.cpp b/cppe/src/IceE/Reference.cpp
index 7177035c41d..9c96ad01bae 100644
--- a/cppe/src/IceE/Reference.cpp
+++ b/cppe/src/IceE/Reference.cpp
@@ -267,8 +267,9 @@ IceInternal::Reference::toString() const
s += " -O";
break;
}
-
- default:
+
+ case ModeDatagram:
+ case ModeBatchDatagram:
{
//
// TODO: Should this assert?