diff --git a/ChangeLog b/ChangeLog index d1e7202..6f043b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-06-05 Richard Kreckel + + * tests/tests.cc: resolve namespace ambiguity about strcmp(). + 2000-05-31 Richard Kreckel * Version 1.1.1 released. diff --git a/tests/tests.cc b/tests/tests.cc index 905235a..fdf9484 100644 --- a/tests/tests.cc +++ b/tests/tests.cc @@ -21,7 +21,7 @@ int test_all (int iterations) int main (int argc, char* argv[]) { int iterations = 10000; - if ((argc >= 3) && !strcmp(argv[1],"-i")) { + if ((argc >= 3) && !::strcmp(argv[1],"-i")) { iterations = atoi(argv[2]); argc -= 2; argv += 2; }