From 6a32b36566083d17f0698201bc3ece63c41f5473 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 19 Dec 2020 14:50:51 +0200 Subject: [PATCH] Qualify call to copy_exception, because msvc-10.0 has std::copy_exception --- include/boost/exception/detail/exception_ptr.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/exception/detail/exception_ptr.hpp b/include/boost/exception/detail/exception_ptr.hpp index 53648f8..91fb0dc 100644 --- a/include/boost/exception/detail/exception_ptr.hpp +++ b/include/boost/exception/detail/exception_ptr.hpp @@ -92,7 +92,7 @@ boost exception_ptr make_exception_ptr( T const & e ) { - return copy_exception(e); + return boost::copy_exception(e); } #ifndef BOOST_NO_RTTI