summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ThreadPool.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-07-31 06:05:27 +0000
committerMichi Henning <michi@zeroc.com>2003-07-31 06:05:27 +0000
commit9d9a1cc050ac8460186f6d934a8d5fdaa2656e9e (patch)
treeb6c1ceeacdb665127a6087fcdb69b5f0b6d69f0a /cpp/src/Ice/ThreadPool.cpp
parentperf improvements (diff)
downloadice-9d9a1cc050ac8460186f6d934a8d5fdaa2656e9e.tar.bz2
ice-9d9a1cc050ac8460186f6d934a8d5fdaa2656e9e.tar.xz
ice-9d9a1cc050ac8460186f6d934a8d5fdaa2656e9e.zip
Removed a statemant near the beginning of read(): stream.i += 8;
Looks like this got left behind during some performance experiments.
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp
index f7c2815f6cb..22882fd21a4 100644
--- a/cpp/src/Ice/ThreadPool.cpp
+++ b/cpp/src/Ice/ThreadPool.cpp
@@ -645,7 +645,6 @@ IceInternal::ThreadPool::read(const EventHandlerPtr& handler)
ptrdiff_t pos = stream.i - stream.b.begin();
assert(pos >= headerSize);
stream.i = stream.b.begin();
- stream.i += 8;
ByteSeq m(sizeof(magic), 0);
stream.readBlob(m, static_cast<Int>(sizeof(magic)));
if(!equal(m.begin(), m.end(), magic))