summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/IncomingAsync.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-04-01 15:10:22 +0200
committerJose <jose@zeroc.com>2017-04-01 15:10:22 +0200
commit20e48f6a4da31c5c559527350210a07acd7ff6e4 (patch)
tree00da50a17f5668f2652f3196a370be443f25c8aa /cpp/src/Ice/IncomingAsync.cpp
parentVC90 build failure ambiguous call to overloaded function (diff)
downloadice-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.cpp3
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