From bed7f3147f586187ea43afb8167ef06f9906e532 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Thu, 30 Mar 2017 17:09:43 -0700 Subject: [PATCH] Typo --- include/boost/exception/detail/error_info_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/exception/detail/error_info_impl.hpp b/include/boost/exception/detail/error_info_impl.hpp index 2c85d3c..6c48d61 100644 --- a/include/boost/exception/detail/error_info_impl.hpp +++ b/include/boost/exception/detail/error_info_impl.hpp @@ -63,11 +63,11 @@ boost v_(x.v_) { } - error_info( value_type && v ) BOOST_NOEXCEPT_IF(boost::is_nothtrow_move_contluctible::value)): + error_info( T && v ) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible::value): v_(std::move(v)) { } - error_info( error_info && x ) BOOST_NOEXCEPT_IF(boost::is_nothtrow_move_contluctible::value)): + error_info( error_info && x ) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible::value): v_(std::move(x.v_)) { }