-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
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
Ignore warnings related to deprecated stdext::checked_array_iterator
on MSVC (again)
#3907
Conversation
…_iterator on MSVC
Looking into this a little, because I kept having issues with it downstream, the problem (iirc) is also be that the latest MSVC can't build OpenSim's I ended up having to read into this particular deprecation more, and it turns out that MSVC has a very specific flag for disabling it:
Which is probably better to use than the I wouldn't recommend deploying it this way (e.g. by telling users to set some environment variable) in Or, even better, de-integrate |
Thanks @adamkewley, hopefully that does the trick.
I think this is the move. |
Seems to have done trick! Nice work @nickbianco ! |
Brief summary of changes
Update to the fix implemented in #3895.
Testing I've completed
Looking for feedback on...
CHANGELOG.md (choose one)
This change is