Removed char* name and dependence on iostream, not appropriate for test

suite (relic of example and debugging).


[SVN r23996]
This commit is contained in:
Hervé Brönnimann
2004-07-23 16:13:43 +00:00
parent 483bc9e231
commit 85e0e920bf
2 changed files with 12 additions and 29 deletions

View File

@ -40,7 +40,7 @@ private:
};
template <class Value>
void test(char*)
void test()
{
using namespace boost;
Value zero(0), one(1);
@ -72,8 +72,8 @@ void test(char*)
int test_main( int , char* [] )
{
test<int>("builtin");
test<custom>("custom ");
test<int>(); // ("builtin");
test<custom>(); // ("custom ");
return 0;
}