to_string adjustments

[SVN r44192]
This commit is contained in:
Emil Dotchevski
2008-04-11 18:34:46 +00:00
parent 3c7f53176f
commit 761ae0bc1e
5 changed files with 82 additions and 39 deletions

View File

@ -49,10 +49,6 @@ int
main()
{
using namespace boost;
BOOST_TEST( !has_to_string<n1::c1>::value );
BOOST_TEST( has_to_string<n2::c2>::value );
BOOST_TEST( has_to_string<n3::c3>::value );
BOOST_TEST( has_to_string<int>::value );
BOOST_TEST( "c2"==to_string(n2::c2()) );
BOOST_TEST( "c3"==to_string(n3::c3()) );
BOOST_TEST( "42"==to_string(42) );