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
We used to constrain our runtime code to pre-C++11, since we compiled it with an older standard to avoid threadsafe-static initialization.
As of #5303, we now use -fno-threadsafe-statics instead, so we can use (at least) C++11 features in runtime code now (e.g. nullptr).
-fno-threadsafe-statics
nullptr
Probably better to just wait until #5282 lands and upgrade the runtime code to C++17 where it makes sense to do so.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We used to constrain our runtime code to pre-C++11, since we compiled it with an older standard to avoid threadsafe-static initialization.
As of #5303, we now use
-fno-threadsafe-statics
instead, so we can use (at least) C++11 features in runtime code now (e.g.nullptr
).Probably better to just wait until #5282 lands and upgrade the runtime code to C++17 where it makes sense to do so.
The text was updated successfully, but these errors were encountered: