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
Warnings in header files can be a problem for consumers that enable
`/WX` (or `-Werror`). In this case, using `... & -align` produces a
warning (C4146) with MSVC. The fix is to use equivalent expression
`... & ~(align - 1)`, which was already used in the same file.
0 commit comments