Ticket #8947: patch.diff

File patch.diff, 910 bytes (added by Maciej Florek <m.florek@…>, 9 years ago)
  • boost/1_53_0/include/boost/exception/detail/exception_ptr.hpp

     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 b boost  
    118118            {
    119119            Exception ba;
    120120            exception_detail::clone_impl<Exception> c(ba);
     121#ifndef BOOST_EXCEPTION_DISABLE
    121122            c <<
    122123                throw_function(BOOST_CURRENT_FUNCTION) <<
    123124                throw_file(__FILE__) <<
    124125                throw_line(__LINE__);
     126#endif
    125127            static exception_ptr ep(shared_ptr<exception_detail::clone_base const>(new exception_detail::clone_impl<Exception>(c)));
    126128            return ep;
    127129            }