You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove exceptions from safe containers and make out-of-memory a panic. We can use new (std::nothrow) to avoid throws.
Compiler: Replace noexcept with nothrow specifier. That will be ill-formed when there's any cleanup path out of a function. We want to minimize cleanup paths in advance of relocation through references.
The text was updated successfully, but these errors were encountered:
Remove exceptions from safe containers and make out-of-memory a panic. We can use
new (std::nothrow)
to avoid throws.Compiler: Replace
noexcept
withnothrow
specifier. That will be ill-formed when there's any cleanup path out of a function. We want to minimize cleanup paths in advance of relocation through references.The text was updated successfully, but these errors were encountered: