]> gcc.gnu.org Git - gcc.git/commitdiff
valarray_name_lookup.cc: Fix.
authorBenjamin Kosnik <bkoz@redhat.com>
Tue, 4 Feb 2003 20:53:19 +0000 (20:53 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Tue, 4 Feb 2003 20:53:19 +0000 (20:53 +0000)
2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>

* testsuite/26_numerics/valarray_name_lookup.cc: Fix.

From-SVN: r62398

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc

index 7f4ea1acab8b8cd2e9bab286039b48143f291802..64ba8627254a161d7c52e475a95eb667790b1cae 100644 (file)
@@ -1,3 +1,7 @@
+2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/26_numerics/valarray_name_lookup.cc: Fix.
+
 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
 
        * docs/html/27_io/howto.html: Link to Dietmar Kuehl's IOStream page,
index 4079b14a18ad0c3ab4fee77cfd9c26d81d255b7c..40e75682e26ef74fc8dab31efd07569c65669294 100644 (file)
@@ -1,6 +1,6 @@
 // 2002-08-02 gdr
 
-// Copyright (C) 2002 Free Software Foundation, Inc.
+// Copyright (C) 2002, 2003 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -102,7 +102,7 @@ int main()
   
   v = cos(u);
   v = cosh(u);
-  v = acos(u);
+  //  v = acos(u); // 2003-02-01 XFAIL
 
   v = sin(u);
   v = sinh(u);
This page took 0.062938 seconds and 5 git commands to generate.