mirror of
https://github.com/boostorg/exception.git
synced 2025-07-21 16:32:05 +02:00
minor compile error fix
[SVN r44372]
This commit is contained in:
@ -35,7 +35,9 @@ boost
|
|||||||
struct
|
struct
|
||||||
is_output_streamable_impl
|
is_output_streamable_impl
|
||||||
{
|
{
|
||||||
enum e { value=is_output_streamable_dispatch<1!=sizeof((*(std::basic_ostream<CharT,Traits>*)0)<<(*(T*)0))>::value };
|
static std::basic_ostream<CharT,Traits> & f();
|
||||||
|
static T const & g();
|
||||||
|
enum e { value=is_output_streamable_dispatch<1!=sizeof(f()<<g())>::value };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user