
12 Jun
2017
12 Jun
'17
5:08 p.m.
On 12/06/2017 20:22, Emil Dotchevski wrote:
Noexcept is a new C++11 library that implements a different approach to solving the same problem. Any feedback is welcome.
From the docs:
WARNING If unhandled errors remain at the time the current thread terminates, Noexcept calls abort(). Use catch_<> to handle any error regardless of its type.
Shouldn't it call std::terminate() instead?