22001-04-11 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
authorPeter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
Wed, 11 Apr 2001 05:43:51 +0000 (05:43 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Wed, 11 Apr 2001 05:43:51 +0000 (05:43 +0000)
        * g++.old-deja/g++.robertl/eb42.C: Same.

From-SVN: r41239

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.robertl/eb42.C

index 842a4b5ed659afb6545b966b6f993e4a30979cb4..ef3667496dd465f9249f48e2c83b37856902c598 100644 (file)
@@ -1,4 +1,8 @@
-2001-04-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+22001-04-11  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
+
+        * g++.old-deja/g++.robertl/eb42.C: Same.
+
+001-04-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * gcc.dg/wtr-conversion-1.c: New testcase.
 
index 8850f9fa63981707aa80e324ca4755eca909b640..c27aa8d2df7c8b04b5b8008a59039e8ef56358a0 100644 (file)
@@ -1,6 +1,6 @@
 //Build don't link:
-#include <vector.h>
-#include <algo.h>
+#include <vector>
+#include <algorithm>
 
 template <class T> class Expr
 {
@@ -14,6 +14,6 @@ inline bool compare(const Expr<T> a, const Expr<T> b){ return true; };
 
 int main()
 {
-vector<int>     a(3);
-sort( a.begin(), a.end(), compare ); // ERROR - no matching function 
+  std::vector<int>     a(3);
+  std::sort( a.begin(), a.end(), compare ); // ERROR - no matching function 
 }