boost/1_53_0/include/boost/exception/detail/exception_ptr.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/boost/1_53_0/include/boost/exception/detail/exception_ptr.hpp b/boost/1_53_0/include/boost/exception/detail/exception_ptr.hpp index 5e5a267..a411709 100644 --- a/boost/1_53_0/include/boost/exception/detail/exception_ptr.hpp +++ b/boost/1_53_0/include/boost/exception/detail/exception_ptr.hpp @@ -118,10 +118,12 @@ boost { Exception ba; exception_detail::clone_impl c(ba); +#ifndef BOOST_EXCEPTION_DISABLE c << throw_function(BOOST_CURRENT_FUNCTION) << throw_file(__FILE__) << throw_line(__LINE__); +#endif static exception_ptr ep(shared_ptr(new exception_detail::clone_impl(c))); return ep; }