Remove uses of BOOST_NOEXCEPT

This commit is contained in:
Peter Dimov
2024-01-17 07:14:05 +02:00
parent 128fd9341f
commit abbfd46517
25 changed files with 152 additions and 152 deletions
+2 -2
View File
@@ -19,12 +19,12 @@ class my_category: public boost::system::error_category
{
public:
char const* name() const BOOST_NOEXCEPT
char const* name() const noexcept
{
return "mycat";
}
boost::system::error_condition default_error_condition( int ev ) const BOOST_NOEXCEPT
boost::system::error_condition default_error_condition( int ev ) const noexcept
{
switch( ev )
{