mirror of
https://github.com/boostorg/throw_exception.git
synced 2025-07-18 06:42:16 +02:00
fix for sun compilers and documentation source update
[SVN r48538]
This commit is contained in:
committed by
Peter Dimov
parent
019fbaa77e
commit
db6110057a
@ -160,6 +160,15 @@ boost
|
|||||||
template <class>
|
template <class>
|
||||||
struct get_info;
|
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 & );
|
char const * get_diagnostic_information( exception const & );
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -213,6 +222,9 @@ boost
|
|||||||
|
|
||||||
template <class>
|
template <class>
|
||||||
friend struct exception_detail::get_info;
|
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 exception_detail::refcount_ptr<exception_detail::error_info_container> data_;
|
||||||
mutable char const * throw_function_;
|
mutable char const * throw_function_;
|
||||||
|
Reference in New Issue
Block a user