13 Jun
2017
13 Jun
'17
12:08 a.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?