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/BasicStream.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/BasicStream.cpp')
-rw-r--r-- | cppe/src/IceE/BasicStream.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/BasicStream.cpp b/cppe/src/IceE/BasicStream.cpp index 63c9fd38b34..53eb8e89c94 100644 --- a/cppe/src/IceE/BasicStream.cpp +++ b/cppe/src/IceE/BasicStream.cpp @@ -1506,7 +1506,7 @@ IceInternal::BasicStream::throwException() read(usesClasses); string id; - read(id); + read(id, false); for(;;) { // @@ -1534,7 +1534,7 @@ IceInternal::BasicStream::throwException() else { skipSlice(); // Slice off what we don't understand. - read(id); // Read type id for next slice. + read(id, false); // Read type id for next slice. } } |