Hopefully fixing the Como-specific problem reported by Robert Ramey.

[SVN r47126]
This commit is contained in:
Emil Dotchevski
2008-07-06 04:50:53 +00:00
parent 9ddb810b95
commit 044d5767e2
8 changed files with 17 additions and 0 deletions

View File

@ -19,6 +19,7 @@ boost
exception_detail
{
template <class T>
inline
std::string
object_hex_dump( T const & x, size_t max_size=16 )
{

View File

@ -121,6 +121,7 @@ boost
};
template <class T>
inline
clone_base *
make_clone( T const & x )
{
@ -144,6 +145,7 @@ boost
}
template <class T>
inline
exception_detail::clone_impl<T>
enable_current_exception( T const & x )
{

View File

@ -88,6 +88,7 @@ boost
}
template <class T>
inline
#if !BOOST_WORKAROUND(__BORLANDC__,BOOST_TESTED_AT(0x582))
typename
#endif

View File

@ -86,6 +86,7 @@ virtual //Disable bogus GCC warning.
};
template <class E,class Tag,class T>
inline
E const &
operator<<( E const & x, error_info<Tag,T> const & v )
{
@ -95,6 +96,7 @@ virtual //Disable bogus GCC warning.
}
template <class ErrorInfo,class E>
inline
shared_ptr<typename ErrorInfo::value_type const>
get_error_info( E const & some_exception )
{

View File

@ -16,6 +16,7 @@ boost
class E,
class Tag1,class T1,
class Tag2,class T2 >
inline
E const &
operator<<(
E const & x,
@ -31,6 +32,7 @@ boost
class Tag1,class T1,
class Tag2,class T2,
class Tag3,class T3 >
inline
E const &
operator<<(
E const & x,
@ -48,6 +50,7 @@ boost
class Tag2,class T2,
class Tag3,class T3,
class Tag4,class T4 >
inline
E const &
operator<<(
E const & x,

View File

@ -39,6 +39,7 @@ boost
}
template <class T>
inline
typename enable_if<is_output_streamable<T>,std::string>::type
to_string( T const & x )
{
@ -55,6 +56,7 @@ boost
};
template <class T,class U>
inline
std::string
to_string( std::pair<T,U> const & x )
{

View File

@ -63,6 +63,7 @@ boost
to_string_dispatch
{
template <class T,class Stub>
inline
std::string
dispatch( T const & x, Stub s )
{
@ -71,6 +72,7 @@ boost
}
template <class T>
inline
std::string
string_stub_dump( T const & x )
{
@ -79,6 +81,7 @@ boost
}
template <class T>
inline
std::string
to_string_stub( T const & x )
{
@ -86,6 +89,7 @@ boost
}
template <class T,class Stub>
inline
std::string
to_string_stub( T const & x, Stub s )
{

View File

@ -68,6 +68,7 @@ boost
};
template <class T>
inline
exception_ptr
current_exception_std_exception( T const & e1 )
{
@ -170,6 +171,7 @@ boost
}
template <class T>
inline
exception_ptr
copy_exception( T const & e )
{