diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-06-28 13:45:48 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2019-06-28 13:46:37 -0500 |
commit | ea6423b8d8036885ee6b040a730967d8b25967cc (patch) | |
tree | c5d591c6bf3f864a73c0db1e0395ed1b6605f652 /cpp/src | |
parent | Fixed dependency computation issue when building against bindist, fixes #411 (diff) | |
download | ice-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.cpp | 6 |
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) { } |