diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-22 17:08:46 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-22 17:08:46 +0000 |
commit | 9912d2870a855d71a49808d9ff9419caf8d4337b (patch) | |
tree | 42570e9e3e894b6986969ab526aead2c628297ba /libstdc++-v3 | |
parent | 84a55ca2d8cbcc55be5eacf8b87b3d0d579bfc80 (diff) | |
download | gcc-9912d2870a855d71a49808d9ff9419caf8d4337b.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35193 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-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 4116d05ad80..e1ad98e781f 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 c6c1e39a499..8e4369090b5 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 |