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
Without the restrict keywords, the code seems to compile and run ok using Visual Studio 2015. How critical is the use of the restrict keyword?
The text was updated successfully, but these errors were encountered:
I'd accept a patch that conditionally replaces restrict for VS2015
restrict
#if (something to detect VS2015) #define restrict __restrict__ #endif
or something like that
Sorry, something went wrong.
Sounds with visual C++ has the restrict but it appears differently as: __restrict and __declspec(restrict)
__restrict
__declspec(restrict)
source: https://en.wikipedia.org/wiki/Restrict https://msdn.microsoft.com/en-us/library/5ft82fed.aspx
No branches or pull requests
Without the restrict keywords, the code seems to compile and run ok using Visual Studio 2015. How critical is the use of the restrict keyword?
The text was updated successfully, but these errors were encountered: