removed tabs. what's wrong with tabs anyway?

[SVN r44246]
This commit is contained in:
Emil Dotchevski
2008-04-12 03:27:57 +00:00
parent 761ae0bc1e
commit ec40d3d8ad
7 changed files with 77 additions and 77 deletions

View File

@ -11,40 +11,40 @@
namespace
boost
{
namespace
to_string_detail
{
template <bool>
struct
is_output_streamable_dispatch
{
enum e { value=1 };
};
namespace
to_string_detail
{
template <bool>
struct
is_output_streamable_dispatch
{
enum e { value=1 };
};
template <>
struct
is_output_streamable_dispatch<false>
{
enum e { value=0 };
};
template <>
struct
is_output_streamable_dispatch<false>
{
enum e { value=0 };
};
template <class T,class CharT,class Traits>
char operator<<( std::basic_ostream<CharT,Traits> &, T const & );
template <class T,class CharT,class Traits>
template <class T,class CharT,class Traits>
struct
is_output_streamable_impl
{
enum e { value=is_output_streamable_dispatch<1!=sizeof((*(std::basic_ostream<CharT,Traits>*)0)<<(*(T*)0))>::value };
};
}
is_output_streamable_impl
{
enum e { value=is_output_streamable_dispatch<1!=sizeof((*(std::basic_ostream<CharT,Traits>*)0)<<(*(T*)0))>::value };
};
}
template <class T, class CharT=char, class Traits=std::char_traits<CharT> >
template <class T, class CharT=char, class Traits=std::char_traits<CharT> >
struct
is_output_streamable
{
enum e { value=to_string_detail::is_output_streamable_impl<T,CharT,Traits>::value };
};
is_output_streamable
{
enum e { value=to_string_detail::is_output_streamable_impl<T,CharT,Traits>::value };
};
}
#endif