diff options
author | Jose <jose@zeroc.com> | 2017-04-01 15:10:22 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-01 15:10:22 +0200 |
commit | 20e48f6a4da31c5c559527350210a07acd7ff6e4 (patch) | |
tree | 00da50a17f5668f2652f3196a370be443f25c8aa /cpp/src/Ice/IncomingAsync.cpp | |
parent | VC90 build failure ambiguous call to overloaded function (diff) | |
download | ice-20e48f6a4da31c5c559527350210a07acd7ff6e4.tar.bz2 ice-20e48f6a4da31c5c559527350210a07acd7ff6e4.tar.xz ice-20e48f6a4da31c5c559527350210a07acd7ff6e4.zip |
VC90 build failure ambiguous call to overloaded function
Diffstat (limited to 'cpp/src/Ice/IncomingAsync.cpp')
-rw-r--r-- | cpp/src/Ice/IncomingAsync.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/IncomingAsync.cpp b/cpp/src/Ice/IncomingAsync.cpp index ab359f513d4..3048ba7fe2e 100644 --- a/cpp/src/Ice/IncomingAsync.cpp +++ b/cpp/src/Ice/IncomingAsync.cpp @@ -125,7 +125,8 @@ IceInternal::IncomingAsync::ice_exception() } checkResponseSent(); - IncomingBase::exception("unknown c++ exception", true); // User thread + static const string msg = "unknown c++ exception"; + IncomingBase::exception(msg, true); // User thread } #endif |