Qualify call to copy_exception, because msvc-10.0 has std::copy_exception

This commit is contained in:
Peter Dimov
2020-12-19 14:50:51 +02:00
parent 9bd0584aa9
commit 6a32b36566

View File

@ -92,7 +92,7 @@ boost
exception_ptr exception_ptr
make_exception_ptr( T const & e ) make_exception_ptr( T const & e )
{ {
return copy_exception(e); return boost::copy_exception(e);
} }
#ifndef BOOST_NO_RTTI #ifndef BOOST_NO_RTTI