You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
brigand/test/main.cpp

13 lines
152 B
C++

void for_each_test();
void select_test();
void real_test();
int main(int, char **)
{
for_each_test();
select_test();
real_test();
return 0;
}