diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index ae2cb2a71ed..bf6e44e148c 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -96,7 +96,7 @@ Ice::Object::___ice_ping(Incoming&, const Current& __current) const char* Ice::Object::__all[] = { - "ice_isA" + "ice_isA", "ice_ping" }; @@ -108,6 +108,7 @@ Ice::Object::__dispatch(Incoming& in, const Current& current) pair<const char**, const char**> r = equal_range(b, e, current.operation); if (r.first == r.second) { + cout << "xxx" << endl; return DispatchOperationNotExist; } |