diff --git a/doc/boost-exception.html b/doc/boost-exception.html index 8dd5059..26684fc 100644 --- a/doc/boost-exception.html +++ b/doc/boost-exception.html @@ -395,7 +395,15 @@ boost exception_ptr copy_exception( T const & e ); }
As if try { throw e; } catch( ... ) { return current_exception(); }
+As if
+try + { + throw enable_current_exception(e); + } +catch(...) + { + return current_exception(); + }
#include <boost/exception_ptr.hpp>
diff --git a/doc/copy_exception.html b/doc/copy_exception.html index ff6f4ea..e67d398 100644 --- a/doc/copy_exception.html +++ b/doc/copy_exception.html @@ -29,7 +29,15 @@ boost exception_ptr copy_exception( T const & e ); }As if try { throw e; } catch( ... ) { return current_exception(); }
+As if
+try + { + throw enable_current_exception(e); + } +catch(...) + { + return current_exception(); + }