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
This fixes a build failure that occurs with some versions of clang. There
was a problem in clang, which has been fixed in more recent versions, where
mixing GNU-style attributes with C++-style attributes caused a failure.
A recent code change updated a few uses of `LLVM_ATTRIBUTE_UNUSED` to
`[[maybe_unused]]`, triggering this problem.
This change reorders the attributes in a way that avoids the issue.
0 commit comments