You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix build failure with Xcode/AppleClang 17 (#7699)
Addresses the issue reported in #7606 "Cannot build on MacOS".
A header included from LLVM includes a reference to `std::iterator`
which is deprecated in C++17; this trips a `deprecated-declarations`
warning which becomes a compile error via `-Werror`. This patch
selectively causes that warning to be ignored.
Fixes#7606.
0 commit comments