diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-23 00:10:22 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-23 00:10:22 +0000 |
commit | ddd5ebec2740090133b84d08352f930ceb86f974 (patch) | |
tree | b2630dbb3ab97e89cdf03d428401aa9990dfef32 /cpp/src/Ice/BasicStream.cpp | |
parent | fixes (diff) | |
download | ice-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.cpp | 2 |
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(); |