OSDN Git Service

temporary add to fix file in CVS
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 13 Aug 2004 00:02:01 +0000 (00:02 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 13 Aug 2004 00:02:01 +0000 (00:02 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85917 138bc75d-0d04-0410-961f-82ee72b054a4

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

index c27aa8d..8850f9f 100644 (file)
@@ -1,6 +1,6 @@
 //Build don't link:
-#include <vector>
-#include <algorithm>
+#include <vector.h>
+#include <algo.h>
 
 template <class T> class Expr
 {
@@ -14,6 +14,6 @@ inline bool compare(const Expr<T> a, const Expr<T> b){ return true; };
 
 int main()
 {
-  std::vector<int>     a(3);
-  std::sort( a.begin(), a.end(), compare ); // ERROR - no matching function 
+vector<int>     a(3);
+sort( a.begin(), a.end(), compare ); // ERROR - no matching function 
 }