diff data/fileio/test/main.cpp @ 843:e802e550a1f2

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 13:35:08 +0000
parents 02390a4c2abe
children eb6b6a88faed
line wrap: on
line diff
--- a/data/fileio/test/main.cpp	Tue Nov 26 11:16:37 2013 +0000
+++ b/data/fileio/test/main.cpp	Tue Nov 26 13:35:08 2013 +0000
@@ -22,10 +22,10 @@
     }
 
     if (bad > 0) {
-	std::cerr << "\n********* " << bad << " test suite(s) failed!\n" << std::endl;
+	cerr << "\n********* " << bad << " test suite(s) failed!\n" << endl;
 	return 1;
     } else {
-	std::cerr << "All tests passed" << std::endl;
+	cerr << "All tests passed" << endl;
 	return 0;
     }
 }