Improved to_string(std::pair) support.

[SVN r79252]
This commit is contained in:
Emil Dotchevski
2012-07-03 23:41:52 +00:00
parent e25f33aaf6
commit 9508b38e22
2 changed files with 13 additions and 0 deletions

View File

@ -19,11 +19,16 @@
namespace
boost
{
template <class T,class U>
std::string to_string( std::pair<T,U> const & );
std::string to_string( std::exception const & );
namespace
to_string_detail
{
template <class T>
typename disable_if<is_output_streamable<T>,char>::type to_string( T const & );
using boost::to_string;
template <class,bool IsOutputStreamable>
struct has_to_string_impl;