From 3a1727303c8e1305d3158f685b872c6fdf0c06e4 Mon Sep 17 00:00:00 2001 From: Peter Schmid Date: Wed, 11 Apr 2001 05:43:51 +0000 Subject: [PATCH] 22001-04-11 Peter Schmid * g++.old-deja/g++.robertl/eb42.C: Same. From-SVN: r41239 --- gcc/testsuite/ChangeLog | 6 +++++- gcc/testsuite/g++.old-deja/g++.robertl/eb42.C | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 842a4b5ed65..ef3667496dd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,4 +1,8 @@ -2001-04-10 Kaveh R. Ghazi +22001-04-11 Peter Schmid + + * g++.old-deja/g++.robertl/eb42.C: Same. + +001-04-10 Kaveh R. Ghazi * gcc.dg/wtr-conversion-1.c: New testcase. diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C index 8850f9fa639..c27aa8d2df7 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() { -vector a(3); -sort( a.begin(), a.end(), compare ); // ERROR - no matching function + std::vector a(3); + std::sort( a.begin(), a.end(), compare ); // ERROR - no matching function } -- 2.30.2