diff options
author | Jose <pepone@users.noreply.github.com> | 2022-11-10 17:19:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 17:19:18 +0100 |
commit | a414cba36dfd178e93cfc0e5b9e795dc028dc366 (patch) | |
tree | 733c623a5cf5c861c5600356235d62cae32b1399 /cpp/src | |
parent | Fix missing error description for OpenSSL protocol error (#1392) (diff) | |
download | ice-a414cba36dfd178e93cfc0e5b9e795dc028dc366.tar.bz2 ice-a414cba36dfd178e93cfc0e5b9e795dc028dc366.tar.xz ice-a414cba36dfd178e93cfc0e5b9e795dc028dc366.zip |
Fix Xcode 14.1 C++ build failures - #1396 (#1397)
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceSSL/SecureTransportUtil.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/SecureTransportUtil.cpp b/cpp/src/IceSSL/SecureTransportUtil.cpp index 0b0956d092b..5e79bedef66 100644 --- a/cpp/src/IceSSL/SecureTransportUtil.cpp +++ b/cpp/src/IceSSL/SecureTransportUtil.cpp @@ -23,6 +23,10 @@ using namespace IceSSL; using namespace IceSSL::SecureTransport; using namespace std; +#if defined(__clang__) +# pragma clang diagnostic ignored "-Wdeprecated-declarations" +#endif + namespace { |