forked from boostorg/exception
Hopefully fixing the Como-specific problem reported by Robert Ramey.
[SVN r47126]
This commit is contained in:
@ -19,6 +19,7 @@ boost
|
|||||||
exception_detail
|
exception_detail
|
||||||
{
|
{
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
std::string
|
std::string
|
||||||
object_hex_dump( T const & x, size_t max_size=16 )
|
object_hex_dump( T const & x, size_t max_size=16 )
|
||||||
{
|
{
|
||||||
|
@ -121,6 +121,7 @@ boost
|
|||||||
};
|
};
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
clone_base *
|
clone_base *
|
||||||
make_clone( T const & x )
|
make_clone( T const & x )
|
||||||
{
|
{
|
||||||
@ -144,6 +145,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
exception_detail::clone_impl<T>
|
exception_detail::clone_impl<T>
|
||||||
enable_current_exception( T const & x )
|
enable_current_exception( T const & x )
|
||||||
{
|
{
|
||||||
|
@ -88,6 +88,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
#if !BOOST_WORKAROUND(__BORLANDC__,BOOST_TESTED_AT(0x582))
|
#if !BOOST_WORKAROUND(__BORLANDC__,BOOST_TESTED_AT(0x582))
|
||||||
typename
|
typename
|
||||||
#endif
|
#endif
|
||||||
|
@ -86,6 +86,7 @@ virtual //Disable bogus GCC warning.
|
|||||||
};
|
};
|
||||||
|
|
||||||
template <class E,class Tag,class T>
|
template <class E,class Tag,class T>
|
||||||
|
inline
|
||||||
E const &
|
E const &
|
||||||
operator<<( E const & x, error_info<Tag,T> const & v )
|
operator<<( E const & x, error_info<Tag,T> const & v )
|
||||||
{
|
{
|
||||||
@ -95,6 +96,7 @@ virtual //Disable bogus GCC warning.
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class ErrorInfo,class E>
|
template <class ErrorInfo,class E>
|
||||||
|
inline
|
||||||
shared_ptr<typename ErrorInfo::value_type const>
|
shared_ptr<typename ErrorInfo::value_type const>
|
||||||
get_error_info( E const & some_exception )
|
get_error_info( E const & some_exception )
|
||||||
{
|
{
|
||||||
|
@ -16,6 +16,7 @@ boost
|
|||||||
class E,
|
class E,
|
||||||
class Tag1,class T1,
|
class Tag1,class T1,
|
||||||
class Tag2,class T2 >
|
class Tag2,class T2 >
|
||||||
|
inline
|
||||||
E const &
|
E const &
|
||||||
operator<<(
|
operator<<(
|
||||||
E const & x,
|
E const & x,
|
||||||
@ -31,6 +32,7 @@ boost
|
|||||||
class Tag1,class T1,
|
class Tag1,class T1,
|
||||||
class Tag2,class T2,
|
class Tag2,class T2,
|
||||||
class Tag3,class T3 >
|
class Tag3,class T3 >
|
||||||
|
inline
|
||||||
E const &
|
E const &
|
||||||
operator<<(
|
operator<<(
|
||||||
E const & x,
|
E const & x,
|
||||||
@ -48,6 +50,7 @@ boost
|
|||||||
class Tag2,class T2,
|
class Tag2,class T2,
|
||||||
class Tag3,class T3,
|
class Tag3,class T3,
|
||||||
class Tag4,class T4 >
|
class Tag4,class T4 >
|
||||||
|
inline
|
||||||
E const &
|
E const &
|
||||||
operator<<(
|
operator<<(
|
||||||
E const & x,
|
E const & x,
|
||||||
|
@ -39,6 +39,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
typename enable_if<is_output_streamable<T>,std::string>::type
|
typename enable_if<is_output_streamable<T>,std::string>::type
|
||||||
to_string( T const & x )
|
to_string( T const & x )
|
||||||
{
|
{
|
||||||
@ -55,6 +56,7 @@ boost
|
|||||||
};
|
};
|
||||||
|
|
||||||
template <class T,class U>
|
template <class T,class U>
|
||||||
|
inline
|
||||||
std::string
|
std::string
|
||||||
to_string( std::pair<T,U> const & x )
|
to_string( std::pair<T,U> const & x )
|
||||||
{
|
{
|
||||||
|
@ -63,6 +63,7 @@ boost
|
|||||||
to_string_dispatch
|
to_string_dispatch
|
||||||
{
|
{
|
||||||
template <class T,class Stub>
|
template <class T,class Stub>
|
||||||
|
inline
|
||||||
std::string
|
std::string
|
||||||
dispatch( T const & x, Stub s )
|
dispatch( T const & x, Stub s )
|
||||||
{
|
{
|
||||||
@ -71,6 +72,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
std::string
|
std::string
|
||||||
string_stub_dump( T const & x )
|
string_stub_dump( T const & x )
|
||||||
{
|
{
|
||||||
@ -79,6 +81,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
std::string
|
std::string
|
||||||
to_string_stub( T const & x )
|
to_string_stub( T const & x )
|
||||||
{
|
{
|
||||||
@ -86,6 +89,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T,class Stub>
|
template <class T,class Stub>
|
||||||
|
inline
|
||||||
std::string
|
std::string
|
||||||
to_string_stub( T const & x, Stub s )
|
to_string_stub( T const & x, Stub s )
|
||||||
{
|
{
|
||||||
|
@ -68,6 +68,7 @@ boost
|
|||||||
};
|
};
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
exception_ptr
|
exception_ptr
|
||||||
current_exception_std_exception( T const & e1 )
|
current_exception_std_exception( T const & e1 )
|
||||||
{
|
{
|
||||||
@ -170,6 +171,7 @@ boost
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
inline
|
||||||
exception_ptr
|
exception_ptr
|
||||||
copy_exception( T const & e )
|
copy_exception( T const & e )
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user