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 /cppe/src/IceE/Reference.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 'cppe/src/IceE/Reference.cpp')
-rw-r--r-- | cppe/src/IceE/Reference.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/Reference.cpp b/cppe/src/IceE/Reference.cpp index 8d2a1ac0958..166703586f0 100644 --- a/cppe/src/IceE/Reference.cpp +++ b/cppe/src/IceE/Reference.cpp @@ -729,7 +729,7 @@ IceInternal::DirectReference::streamWrite(BasicStream* s) const } else { - s->write(string("")); // Adapter id. + s->write(string(""), false); // Adapter id. } } @@ -914,7 +914,7 @@ IceInternal::IndirectReference::streamWrite(BasicStream* s) const Parent::streamWrite(s); s->writeSize(0); - s->write(_adapterId); + s->write(_adapterId, false); } string |