diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2004-08-13 00:02:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2004-08-13 00:02:01 +0000 |
commit | 6420eeff0285d6d65dc05478de1804201b3ccacb (patch) | |
tree | c3ff6268bc420a8dda7209777aae9da56594724e | |
parent | 414adbdd70b7093ba9e4087c811ef82b458b54f0 (diff) | |
download | gcc-6420eeff0285d6d65dc05478de1804201b3ccacb.zip gcc-6420eeff0285d6d65dc05478de1804201b3ccacb.tar.gz gcc-6420eeff0285d6d65dc05478de1804201b3ccacb.tar.bz2 |
temporary add to fix file in CVS
From-SVN: r85917
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb42.C | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb42.C index c27aa8d..8850f9f 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 } |