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
Apply RESTRICT_STATIC MSVC workaround to arm/cache.c as well
In #283 a workaround was
introduced to remove the `restrict static` attributes on MSVC where it
is not supported.
This was only defined and used in `arm/api.h` however and not in
`arm/cache.c`, leading to this file to fail compilation because it is
included in `ARM_SRCS` for the `windows_arm64` target in `BUILD.bazel`.
Fix that by replacing `restrict static` with `RESTRICT_STATIC` which
will be defined by the `arm/api.h` header that is already included
in `arm/cache.c`.
0 commit comments