mirror of
https://github.com/boostorg/exception.git
synced 2025-07-16 14:02:12 +02:00
fix for sun compilers and documentation source update
[SVN r48538]
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -160,6 +160,15 @@ boost
|
||||
template <class>
|
||||
struct get_info;
|
||||
|
||||
template <>
|
||||
struct get_info<throw_function>;
|
||||
|
||||
template <>
|
||||
struct get_info<throw_file>;
|
||||
|
||||
template <>
|
||||
struct get_info<throw_line>;
|
||||
|
||||
char const * get_diagnostic_information( exception const & );
|
||||
}
|
||||
|
||||
@ -213,6 +222,9 @@ boost
|
||||
|
||||
template <class>
|
||||
friend struct exception_detail::get_info;
|
||||
friend struct exception_detail::get_info<throw_function>;
|
||||
friend struct exception_detail::get_info<throw_file>;
|
||||
friend struct exception_detail::get_info<throw_line>;
|
||||
|
||||
mutable exception_detail::refcount_ptr<exception_detail::error_info_container> data_;
|
||||
mutable char const * throw_function_;
|
||||
|
@ -10,7 +10,7 @@
|
||||
#include <boost/exception/detail/error_info_base.hpp>
|
||||
#include <boost/exception/detail/type_info.hpp>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
#include <memory.h>
|
||||
#include <string.h>
|
||||
|
||||
namespace
|
||||
boost
|
||||
|
Reference in New Issue
Block a user