summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-08-01 10:09:48 -0400
committerBernard Normier <bernard@zeroc.com>2016-08-01 10:09:48 -0400
commit4aa7ae5129a9cb66f5ea26165310e96603af576c (patch)
treef8ee6859ad547b59cc28eadb1212f403f51dfff7 /cpp/src/Ice/Exception.cpp
parentDo not initialize OpenSSL locks if already done by other library. (diff)
downloadice-4aa7ae5129a9cb66f5ea26165310e96603af576c.tar.bz2
ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.tar.xz
ice-4aa7ae5129a9cb66f5ea26165310e96603af576c.zip
Move StringConverter API to namespace Ice
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r--cpp/src/Ice/Exception.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp
index 848d7260502..7e2fc340c9d 100644
--- a/cpp/src/Ice/Exception.cpp
+++ b/cpp/src/Ice/Exception.cpp
@@ -16,7 +16,7 @@
#include <Ice/InputStream.h>
#include <IceUtil/StringUtil.h>
#ifdef ICE_OS_WINRT
-# include <IceUtil/StringConverter.h>
+# include <Ice/StringConverter.h>
#endif
#include <iomanip>
@@ -48,9 +48,9 @@ socketErrorToString(int error)
// Don't need to use a wide string converter as the wide string come
// from Windows API.
//
- return IceUtil::wstringToString(
+ return wstringToString(
static_cast<Windows::Networking::Sockets::SocketErrorStatus>(error).ToString()->Data(),
- IceUtil::getProcessStringConverter());
+ getProcessStringConverter());
}
#else
return IceUtilInternal::errorToString(error);