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
Newer Visual Studio 17.8+ C++ STL deprecates the use of checked_array_iterator with this change microsoft/STL#3818
This causes a build error due to the deprecation if warnings are treated as errors.
The text was updated successfully, but these errors were encountered:
@davidbolvansky Thanks for the information. We will consider to make a patch for it. Feel free to submit a PR as well!
Sorry, something went wrong.
Workaround for now: add_compile_options(-D_SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING)
add_compile_options(-D_SILENCE_STDEXT_ARR_ITERS_DEPRECATION_WARNING)
Nice, but it's better to address it from the source.
@davidbolvansky could you point which VLA is causing the issue ?
Maybe you can open a MR and follow what has been done for FreeBSD e5f6911
No branches or pull requests
Newer Visual Studio 17.8+ C++ STL deprecates the use of checked_array_iterator with this change
microsoft/STL#3818
This causes a build error due to the deprecation if warnings are treated as errors.
The text was updated successfully, but these errors were encountered: