diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-02 15:07:02 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-02 15:07:02 +0000 |
commit | 912ae5bd3be5e5a1086c59288cf099435d31aa65 (patch) | |
tree | 6ce168d1c9f6381080331f7981f1b3f896fd04c5 /cpp/src/Ice/Object.cpp | |
parent | updating property names (diff) | |
download | ice-912ae5bd3be5e5a1086c59288cf099435d31aa65.tar.bz2 ice-912ae5bd3be5e5a1086c59288cf099435d31aa65.tar.xz ice-912ae5bd3be5e5a1086c59288cf099435d31aa65.zip |
Adding string converter optimizations
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index 29b178d352d..01947c3112f 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -102,7 +102,7 @@ Ice::Object::___ice_isA(Incoming& __inS, const Current& __current) BasicStream* __is = __inS.is(); BasicStream* __os = __inS.os(); string __id; - __is->read(__id); + __is->read(__id, false); bool __ret = ice_isA(__id, __current); __os->write(__ret); return DispatchOK; @@ -129,7 +129,7 @@ Ice::Object::___ice_id(Incoming& __inS, const Current& __current) { BasicStream* __os = __inS.os(); string __ret = ice_id(__current); - __os->write(__ret); + __os->write(__ret, false); return DispatchOK; } |