ORC_RESTRICT has no effect on MSVC build
MSVC uses restrict
syntax only for function return type (e.g., __declspec(restrict)
) and __restrict
is the one equivalent to GCC's __restrict__
Probably this is one of reasons why I've seen some slowness on Windows host than WSL2