summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ThreadPool.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-05-27 06:13:54 +0000
committerMichi Henning <michi@zeroc.com>2003-05-27 06:13:54 +0000
commit07c776ba53a305edfa5f1868fd9afa20d7fd379e (patch)
tree71add001adf8c0bae18829d50d97c5702ca0a634 /cpp/src/Ice/ThreadPool.cpp
parentAdded IceBox slice file to Ice.msi (diff)
downloadice-07c776ba53a305edfa5f1868fd9afa20d7fd379e.tar.bz2
ice-07c776ba53a305edfa5f1868fd9afa20d7fd379e.tar.xz
ice-07c776ba53a305edfa5f1868fd9afa20d7fd379e.zip
- Removed a number of typos in the documentation.
- Got rid of MagicTypes sequence -- using ByteSeq now. - Did a make depend because LocalException.ice now #includes BuiltinSequences.ice.
Diffstat (limited to 'cpp/src/Ice/ThreadPool.cpp')
-rw-r--r--cpp/src/Ice/ThreadPool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ThreadPool.cpp b/cpp/src/Ice/ThreadPool.cpp
index 53152fd03d8..69fa4892a50 100644
--- a/cpp/src/Ice/ThreadPool.cpp
+++ b/cpp/src/Ice/ThreadPool.cpp
@@ -637,7 +637,7 @@ IceInternal::ThreadPool::read(const EventHandlerPtr& handler)
ptrdiff_t pos = stream.i - stream.b.begin();
assert(pos >= headerSize);
stream.i = stream.b.begin();
- MagicBytes m(sizeof(magic), 0);
+ ByteSeq m(sizeof(magic), 0);
stream.readBlob(m, static_cast<Int>(sizeof(magic)));
if(!equal(m.begin(), m.end(), magic))
{