From: Ian Lance Taylor Date: Fri, 13 Aug 2004 00:02:01 +0000 (+0000) Subject: temporary add to fix file in CVS X-Git-Tag: releases/gcc-4.0.0~5931 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6420eeff0285d6d65dc05478de1804201b3ccacb;p=thirdparty%2Fgcc.git temporary add to fix file in CVS From-SVN: r85917 --- diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C index c27aa8d2df7c..8850f9fa6398 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 -#include +#include +#include template class Expr { @@ -14,6 +14,6 @@ inline bool compare(const Expr a, const Expr b){ return true; }; int main() { - std::vector a(3); - std::sort( a.begin(), a.end(), compare ); // ERROR - no matching function +vector a(3); +sort( a.begin(), a.end(), compare ); // ERROR - no matching function }