diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-05 21:13:30 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-05 21:13:30 +0000 |
commit | c16b515f274e7ffeefc00e34bd831812efb99ebc (patch) | |
tree | f29336817b2436d293ff45a958733c14ab74d2b9 /cpp/src | |
parent | Fix Freeze::ConstDBIterator bug. (diff) | |
download | ice-c16b515f274e7ffeefc00e34bd831812efb99ebc.tar.bz2 ice-c16b515f274e7ffeefc00e34bd831812efb99ebc.tar.xz ice-c16b515f274e7ffeefc00e34bd831812efb99ebc.zip |
fixes
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; } |