diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2003-02-04 20:53:19 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-02-04 20:53:19 +0000 |
commit | 431a7363889f000d1b24ddded75eb73bd2d9a6b1 (patch) | |
tree | 9173fa509f51c1f13c171aa3584d3164ac6b9c9b | |
parent | f0f0d98e16eaee1227414031c0dd5600fcc0b252 (diff) | |
download | gcc-431a7363889f000d1b24ddded75eb73bd2d9a6b1.zip gcc-431a7363889f000d1b24ddded75eb73bd2d9a6b1.tar.gz gcc-431a7363889f000d1b24ddded75eb73bd2d9a6b1.tar.bz2 |
valarray_name_lookup.cc: Fix.
2003-02-04 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/26_numerics/valarray_name_lookup.cc: Fix.
From-SVN: r62398
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7f4ea1a..64ba862 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -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, diff --git a/libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc b/libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc index 4079b14..40e7568 100644 --- a/libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc +++ b/libstdc++-v3/testsuite/26_numerics/valarray_name_lookup.cc @@ -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); |