summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/PicklerI.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpp/src/Ice/PicklerI.cpp b/cpp/src/Ice/PicklerI.cpp
index 297dc15d87f..c62c0999f4c 100644
--- a/cpp/src/Ice/PicklerI.cpp
+++ b/cpp/src/Ice/PicklerI.cpp
@@ -46,14 +46,10 @@ Ice::PicklerI::unpickle(std::istream& in)
}
s.i = s.b.begin();
- bool bigendian;
- s.read(bigendian);
- s.pushBigendian(bigendian);
Byte encVer;
s.read(encVer);
Int sz;
s.read(sz);
- s.popBigendian();
// Don't use s.b.resize() here, otherwise no size sanity checks
// will be done