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
In C++ code we want to catch exceptions before returning to Haskell, or things don't end well, but some code does not need this overhead.
If we can generate C++ code with a noexcept qualifier on it, we can take advantage of the C++ compiler to enforce this safety condition while allowing us to generate faster code.
The text was updated successfully, but these errors were encountered:
In C++ code we want to catch exceptions before returning to Haskell, or things don't end well, but some code does not need this overhead.
If we can generate C++ code with a
noexcept
qualifier on it, we can take advantage of the C++ compiler to enforce this safety condition while allowing us to generate faster code.The text was updated successfully, but these errors were encountered: