Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace throw() with noexcept. Unlike throw(), noexcept indicates tha…
…t the function does not throw. Before C++17, throw() was equivalent to wrapping the function in a try {} catch { std::unexpected(); }. In C++17 throw() was made equivalent to noexcept and in C++20 throw() was removed.
- Loading branch information