We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
restrict
the restrict keyword is part of C99 but if the compiler does not support it, compilation will fail.
Reference:
https://github.com/baresip/re/blob/main/include/re_fmt.h#L90
There are some compilers that partially supports C99, such as MSVC 2019 version 16.
The text was updated successfully, but these errors were encountered:
other projects are using a macro wrapper:
https://ffmpeg.org/doxygen/1.2/attributes_8h.html#a69c6b995228f305482ad544113a51673
Sorry, something went wrong.
Looks like we can use __restrict as replacement, made a PR:
__restrict
#514
https://docs.microsoft.com/en-us/cpp/cpp/extension-restrict?view=msvc-170
Successfully merging a pull request may close this issue.
the
restrict
keyword is part of C99 but if the compiler does not support it,compilation will fail.
Reference:
https://github.com/baresip/re/blob/main/include/re_fmt.h#L90
There are some compilers that partially supports C99, such as MSVC 2019 version 16.
The text was updated successfully, but these errors were encountered: