Remove uses of BOOST_NOEXCEPT

This commit is contained in:
Peter Dimov
2024-10-02 22:13:01 +03:00
parent 950ef1c130
commit ab13ffa91d
7 changed files with 11 additions and 17 deletions

View File

@@ -42,7 +42,7 @@ struct X: public boost::enable_shared_from_this<X>
{
int v_;
constexpr X() BOOST_NOEXCEPT: v_( 1 )
constexpr X() noexcept: v_( 1 )
{
}
};