1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 04:53:12 +01:00

Suppress OpenSSL 3.0 deprecation warnings (#17056)

This commit is contained in:
Michael Steenbeek
2022-04-25 18:58:31 +02:00
committed by GitHub
parent 3435f91ddf
commit 8210a9ecab

View File

@@ -9,6 +9,9 @@
#if !defined(DISABLE_NETWORK) && (!defined(_WIN32) || (defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0600))
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
# include "Crypt.h"
# include <openssl/evp.h>
@@ -350,4 +353,6 @@ namespace Crypt
}
} // namespace Crypt
# pragma GCC diagnostic pop
#endif // DISABLE_NETWORK