Merge branch 'master' into windows-clang

This commit is contained in:
qurious-pixel 2026-04-05 14:31:09 -07:00 committed by GitHub
commit 6f420afc18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
383 changed files with 19656 additions and 5493 deletions

View file

@ -16,12 +16,12 @@
#include <errno.h>
#endif
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4996)
#elif defined(__clang__)
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#elif defined(_MSC_VER)
#pragma warning(push)
#pragma warning(disable : 4996)
#else
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"