summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/BasicStream.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-10-23 00:10:22 +0000
committerMarc Laukien <marc@zeroc.com>2001-10-23 00:10:22 +0000
commitddd5ebec2740090133b84d08352f930ceb86f974 (patch)
treeb2630dbb3ab97e89cdf03d428401aa9990dfef32 /cpp/src/Ice/BasicStream.cpp
parentfixes (diff)
downloadice-ddd5ebec2740090133b84d08352f930ceb86f974.tar.bz2
ice-ddd5ebec2740090133b84d08352f930ceb86f974.tar.xz
ice-ddd5ebec2740090133b84d08352f930ceb86f974.zip
fixes for windows; other fixes
Diffstat (limited to 'cpp/src/Ice/BasicStream.cpp')
-rw-r--r--cpp/src/Ice/BasicStream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/BasicStream.cpp b/cpp/src/Ice/BasicStream.cpp
index ebeb1c685bf..d5014036981 100644
--- a/cpp/src/Ice/BasicStream.cpp
+++ b/cpp/src/Ice/BasicStream.cpp
@@ -899,7 +899,7 @@ IceInternal::BasicStream::throwException(const char** throwsBegin, const char**
{
for (const char** p = ex.__getExceptionIds(); strcmp(*p, "::Ice::UserException") != 0; ++p)
{
- if (binary_search(throwsBegin, throwsEnd, *p))
+ if (binary_search(throwsBegin, throwsEnd, string(*p)))
{
ex.__read(this);
ex._throw();