Merge f80a4046f41308f475b2a6ff05a3e624b5bc86b9 into 7140cd416cecd7462a8aae488024abeee55598e4

This commit is contained in:
sendaoYan 2026-06-02 21:56:22 -04:00 committed by GitHub
commit da06f9abaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,7 +52,16 @@
#include <cstddef>
#include <cstdint>
#include <limits>
#ifdef __clang__
#pragma clang diagnostic push
// Disable the deprecated-declarations warning before the clang bug
// (https://github.com/llvm/llvm-project/issues/76515) has been fixed
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#endif
#include <memory>
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#include <ostream>
#include <set>
#include <sstream>