summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2019-06-28 13:45:48 -0500
committerBernard Normier <bernard@zeroc.com>2019-06-28 13:46:37 -0500
commitea6423b8d8036885ee6b040a730967d8b25967cc (patch)
treec5d591c6bf3f864a73c0db1e0395ed1b6605f652 /cpp/src
parentFixed dependency computation issue when building against bindist, fixes #411 (diff)
downloadice-ea6423b8d8036885ee6b040a730967d8b25967cc.tar.bz2
ice-ea6423b8d8036885ee6b040a730967d8b25967cc.tar.xz
ice-ea6423b8d8036885ee6b040a730967d8b25967cc.zip
Small fixes for AIX build
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IceSSL/CertificateI.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/CertificateI.cpp b/cpp/src/IceSSL/CertificateI.cpp
index cb7e2d3ee39..bb5030f76cd 100644
--- a/cpp/src/IceSSL/CertificateI.cpp
+++ b/cpp/src/IceSSL/CertificateI.cpp
@@ -46,7 +46,7 @@ const CertificateOID IceSSL::certificateOIDS[] =
const int IceSSL::certificateOIDSSize = sizeof(IceSSL::certificateOIDS) / sizeof(CertificateOID);
CertificateReadException::CertificateReadException(const char* file, int line, const string& r) :
- ExceptionHelper<CertificateReadException>(file, line),
+ IceUtil::ExceptionHelper<CertificateReadException>(file, line),
reason(r)
{
}
@@ -72,7 +72,7 @@ CertificateReadException::ice_clone() const
#endif
CertificateEncodingException::CertificateEncodingException(const char* file, int line, const string& r) :
- ExceptionHelper<CertificateEncodingException>(file, line),
+ IceUtil::ExceptionHelper<CertificateEncodingException>(file, line),
reason(r)
{
}
@@ -98,7 +98,7 @@ CertificateEncodingException::ice_clone() const
#endif
ParseException::ParseException(const char* file, int line, const string& r) :
- ExceptionHelper<ParseException>(file, line),
+ IceUtil::ExceptionHelper<ParseException>(file, line),
reason(r)
{
}