mirror of
https://github.com/boostorg/algorithm.git
synced 2025-07-29 12:07:18 +02:00
Removed char* name and dependence on iostream, not appropriate for test
suite (relic of example and debugging). [SVN r23996]
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user