From eb810d49cb2126523c165a65458c35a018ccbe4b Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sat, 3 Jul 2010 21:32:02 +0000 Subject: [PATCH] merging changes from trunk. [SVN r63565] --- doc/boost_exception_get_error_info_hpp.html | 4 +- doc/get_error_info.html | 4 +- .../boost/exception/detail/exception_ptr.hpp | 12 +++--- include/boost/exception/exception.hpp | 8 ++-- include/boost/exception/info.hpp | 13 ++++-- include/boost/throw_exception.hpp | 40 +++++++++---------- test/no_exceptions_test.cpp | 2 + test/refcount_ptr_test.cpp | 9 ++++- 8 files changed, 53 insertions(+), 39 deletions(-) diff --git a/doc/boost_exception_get_error_info_hpp.html b/doc/boost_exception_get_error_info_hpp.html index 1850ab8..55fe7ca 100644 --- a/doc/boost_exception_get_error_info_hpp.html +++ b/doc/boost_exception_get_error_info_hpp.html @@ -28,10 +28,10 @@ namespace boost { template <class ErrorInfo,class E> - typename ErrorInfo::error_info::value_type const * get_error_info( E const & x ); + typename ErrorInfo::error_info::value_type const * get_error_info( E const & x ); template <class ErrorInfo,class E> - typename ErrorInfo::error_info::value_type * get_error_info( E & x ); + typename ErrorInfo::error_info::value_type * get_error_info( E & x ); }

See also: boost/exception/all.hpp | error_info diff --git a/doc/get_error_info.html b/doc/get_error_info.html index b6b4196..90b5fcc 100644 --- a/doc/get_error_info.html +++ b/doc/get_error_info.html @@ -25,10 +25,10 @@ boost { template <class ErrorInfo,class E> - typename ErrorInfo::error_info::value_type const * get_error_info( E const & x ); + typename ErrorInfo::error_info::value_type const * get_error_info( E const & x ); template <class ErrorInfo,class E> - typename ErrorInfo::error_info::value_type * get_error_info( E & x ); + typename ErrorInfo::error_info::value_type * get_error_info( E & x ); }

Requirements: