12 Jun
2017
12 Jun
'17
8:58 a.m.
2017-06-12 10:22 GMT+02:00 Emil Dotchevski via Boost
The lively debates during the Outcome review show that there is a great deal of interest in solving the problem of error handling in environments where C++ exception handling is unavailable.
Noexcept is a new C++11 library that implements a different approach to solving the same problem. Any feedback is welcome.
https://zajo.github.io/boost-noexcept/
Emil
Thanks for sharing. The library looks interesting. It is my understanding that the caller can decide whether they want to catch exceptions (with try_), or let the exception pass: in this case you read the value returned from a function directly, which may result in obtaining a "default value" of the returned type. Right? Regards, &rzej;