diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-08-25 09:26:14 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-08-25 09:26:14 +0000 |
commit | 11f4002d9924fa7e77cae0dbf893da19a6fc5a24 (patch) | |
tree | 2b714ac8657ad910196f86a8d6b5e16c7eab2717 /cpp/src/Ice/BasicStream.cpp | |
parent | Bug 1325. (diff) | |
download | ice-11f4002d9924fa7e77cae0dbf893da19a6fc5a24.tar.bz2 ice-11f4002d9924fa7e77cae0dbf893da19a6fc5a24.tar.xz ice-11f4002d9924fa7e77cae0dbf893da19a6fc5a24.zip |
Fix build problem with BasicStream with PowerPC.
Diffstat (limited to 'cpp/src/Ice/BasicStream.cpp')
-rw-r--r-- | cpp/src/Ice/BasicStream.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cpp/src/Ice/BasicStream.cpp b/cpp/src/Ice/BasicStream.cpp index 3f75b9296a4..1489dd2f52f 100644 --- a/cpp/src/Ice/BasicStream.cpp +++ b/cpp/src/Ice/BasicStream.cpp @@ -964,7 +964,6 @@ IceInternal::BasicStream::read(pair<const Long*, const Long*>& v) result = new Long[sz]; v.first = result; v.second = result + sz; - b.reset(array); Container::iterator begin = i; i += sz * static_cast<int>(sizeof(Long)); @@ -1115,7 +1114,6 @@ IceInternal::BasicStream::read(pair<const Float*, const Float*>& v) result = new Float[sz]; v.first = result; v.second = result + sz; - b.reset(array); Container::iterator begin = i; i += sz * static_cast<int>(sizeof(Float)); @@ -1286,7 +1284,6 @@ IceInternal::BasicStream::read(pair<const Double*, const Double*>& v) result = new Double[sz]; v.first = result; v.second = result + sz; - b.reset(array); Container::iterator begin = i; i += sz * static_cast<int>(sizeof(Double)); |