mirror of
https://github.com/boostorg/algorithm.git
synced 2026-02-03 21:55:14 +01: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