diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C index c27aa8d2df7c8b04b5b8008a59039e8ef56358a0..8850f9fa63981707aa80e324ca4755eca909b640 100644 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C @@ -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 }