mirror of
https://github.com/boostorg/exception.git
synced 2026-02-03 21:55:19 +01:00
Typo
This commit is contained in:
@@ -63,11 +63,11 @@ boost
|
||||
v_(x.v_)
|
||||
{
|
||||
}
|
||||
error_info( value_type && v ) BOOST_NOEXCEPT_IF(boost::is_nothtrow_move_contluctible<value_type>::value)):
|
||||
error_info( T && v ) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<T>::value):
|
||||
v_(std::move(v))
|
||||
{
|
||||
}
|
||||
error_info( error_info && x ) BOOST_NOEXCEPT_IF(boost::is_nothtrow_move_contluctible<value_type>::value)):
|
||||
error_info( error_info && x ) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<T>::value):
|
||||
v_(std::move(x.v_))
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user