$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] Noexcept
From: Gavin Lambert (gavinl_at_[hidden])
Date: 2017-06-13 00:08:37
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.
>
> https://zajo.github.io/boost-noexcept/
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?