diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-07-22 17:08:46 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-07-22 17:08:46 +0000 |
commit | 11489a95954d9b77b40c4a1621521564dd5b2e07 (patch) | |
tree | 42570e9e3e894b6986969ab526aead2c628297ba | |
parent | 2d573dffb63d4eac4c3fbf8a4c1aa45c8fac14ef (diff) | |
download | gcc-11489a95954d9b77b40c4a1621521564dd5b2e07.zip gcc-11489a95954d9b77b40c4a1621521564dd5b2e07.tar.gz gcc-11489a95954d9b77b40c4a1621521564dd5b2e07.tar.bz2 |
stl-inst.cc: Change __sink_unused_warning to unsigned int for alpha.
2000-07-21 Benjamin Kosnik <bkoz@purist.soma.redhat.com>
* src/stl-inst.cc: Change __sink_unused_warning to unsigned int
for alpha.
* testsuite/26_numerics/complex_inserters_extractors.cc (testall):
Change return type to void.
* testsuite/25_algorithms/lower_bound.cc: Add return values.
* testsuite/17_intro/header_ciso646.cc: Modify.
* bits/locale_facets.h: Add return values for the generic cases.
From-SVN: r35193
-rw-r--r-- | libstdc++-v3/ChangeLog | 19 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/17_intro/header_ciso646.cc | 4 |
2 files changed, 19 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4116d05..e1ad98e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -5,13 +5,24 @@ * src/valarray-inst.cc (__valarray_product): Remove explicit instantiation. +2000-07-21 Benjamin Kosnik <bkoz@purist.soma.redhat.com> + + * src/stl-inst.cc: Change __sink_unused_warning to unsigned int + for alpha. + + * testsuite/26_numerics/complex_inserters_extractors.cc (testall): + Change return type to void. + * testsuite/25_algorithms/lower_bound.cc: Add return values. + * testsuite/17_intro/header_ciso646.cc: Modify. + * bits/locale_facets.h: Add return values for the generic cases. + 2000-07-21 H.J. Lu (hjl@gnu.org) - * acinclude.m4: Include <features.h> for glibc testing. - * aclocal.m4: Likewise. + * acinclude.m4: Include <features.h> for glibc testing. + * aclocal.m4: Likewise. + + * configure: Rebuild. - * configure: Rebuild. - 2000-07-20 H.J. Lu (hjl@gnu.org) * acinclude.m4: Change "#pragma system_header" to diff --git a/libstdc++-v3/testsuite/17_intro/header_ciso646.cc b/libstdc++-v3/testsuite/17_intro/header_ciso646.cc index c6c1e39..8e43690 100644 --- a/libstdc++-v3/testsuite/17_intro/header_ciso646.cc +++ b/libstdc++-v3/testsuite/17_intro/header_ciso646.cc @@ -38,6 +38,8 @@ bool test01() { bool test = true; +#if 0 + #ifdef and test = false; #endif @@ -82,6 +84,8 @@ bool test01() test = false; #endif +#endif + #ifdef DEBUG_ASSERT assert(test); #endif |