mirror of https://github.com/CGAL/cgal
Do not rely on ADL to find for_each() (fails with g++'s debug mode).
This commit is contained in:
parent
9c83707365
commit
ea787288df
|
|
@ -82,8 +82,8 @@ int main(int, char **) {
|
||||||
filenames.push_back("data/test10.cin");
|
filenames.push_back("data/test10.cin");
|
||||||
filenames.push_back("data/test11.cin");
|
filenames.push_back("data/test11.cin");
|
||||||
|
|
||||||
for_each(filenames.begin(), filenames.end(), Test_file(.5));
|
std::for_each(filenames.begin(), filenames.end(), Test_file(.5));
|
||||||
for_each(filenames.begin(), filenames.end(), Test_file(.25));
|
std::for_each(filenames.begin(), filenames.end(), Test_file(.25));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue