* g++.old-deja/g++.robertl/eb42.C: Same.
From-SVN: r41239
-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.
//Build don't link:
-#include <vector.h>
-#include <algo.h>
+#include <vector>
+#include <algorithm>
template <class T> class Expr
{
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
}