diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-13 19:33:40 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-01-13 19:33:40 +0000 |
commit | 46d927bc300f9379515446568736c430625c6122 (patch) | |
tree | 19a3bdb1076de620e3228e7d5773b0abd067d534 | |
parent | 576506bf62c5f3b4fdefe2ff6b2de1f44ae1b7ac (diff) | |
download | gcc-46d927bc300f9379515446568736c430625c6122.tar.gz |
2005-01-13 Paolo Carlini <pcarlini@suse.de>
* testsuite/26_numerics/cmath/c99_classification_macros_c++.cc:
Re-enable commented-out test for double type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@93609 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/26_numerics/cmath/c99_classification_macros_c++.cc | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 44c7eff9c8d..4f3e7b664bc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-01-13 Paolo Carlini <pcarlini@suse.de> + + * testsuite/26_numerics/cmath/c99_classification_macros_c++.cc: + Re-enable commented-out test for double type. + 2005-01-11 Paolo Carlini <pcarlini@suse.de> Benjamin Kosnik <bkoz@redhat.com> diff --git a/libstdc++-v3/testsuite/26_numerics/cmath/c99_classification_macros_c++.cc b/libstdc++-v3/testsuite/26_numerics/cmath/c99_classification_macros_c++.cc index 543f3d43fc9..815a73e055c 100644 --- a/libstdc++-v3/testsuite/26_numerics/cmath/c99_classification_macros_c++.cc +++ b/libstdc++-v3/testsuite/26_numerics/cmath/c99_classification_macros_c++.cc @@ -1,6 +1,6 @@ // 2001-04-06 gdr -// Copyright (C) 2001 Free Software Foundation, Inc. +// Copyright (C) 2001, 2005 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 @@ -85,7 +85,7 @@ int main() { #if _GLIBCXX_USE_C99 test_c99_classify<float>(); - //test_c99_classify<double>(); + test_c99_classify<double>(); #endif return 0; } |