std_sstream.h: Add allocator_type, as per DR 251.

2001-06-12  Benjamin Kosnik  <bkoz@redhat.com>

	libstdc++/3142
	* include/bits/std_sstream.h: Add allocator_type, as per DR 251.

	libstdc++/3141
	* include/bits/istream.tcc (getline, get): Fix as per DR 243.

	libstdc++/3140
	* include/bits/std_bitset.h (bitset::set): Fix as per DR 186.

	libstdc++/3139
	* include/bits/limits_generic.h: Fix as per DR 184.

From-SVN: r43276
This commit is contained in:
Benjamin Kosnik 2001-06-12 23:00:39 +00:00 committed by Benjamin Kosnik
parent 84330467cd
commit 1d855e87fd
4 changed files with 875 additions and 875 deletions

View File

@ -1,3 +1,11 @@
2001-06-12 Benjamin Kosnik <bkoz@redhat.com>
* acinclude.m4 (GLIBCPP_CHECK_COMPILER_VERSION): Change to
AC_TRY_COMPILE, so that the built compiler is checked, and
bootstraps or cross compiles with an older compile still work.
* aclocal.m4: Regenerate.
* configure: Regenerate.
2001-06-12 Benjamin Kosnik <bkoz@redhat.com>
libstdc++/3142

View File

@ -157,9 +157,9 @@ if test ! -f stamp-sanity-compiler; then
AC_MSG_CHECKING([for g++ that will successfully compile libstdc++-v3])
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_EGREP_CPP(ok, [
#if __GNUC__ >= 3
ok
AC_TRY_COMPILE(, [
#if __GNUC__ < 3
not_ok
#endif
], gpp_satisfactory=yes, AC_MSG_ERROR([please upgrade to GCC 3.0 or above]))
AC_LANG_RESTORE

View File

@ -169,9 +169,9 @@ if test ! -f stamp-sanity-compiler; then
AC_MSG_CHECKING([for g++ that will successfully compile libstdc++-v3])
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_EGREP_CPP(ok, [
#if __GNUC__ >= 3
ok
AC_TRY_COMPILE(, [
#if __GNUC__ < 3
not_ok
#endif
], gpp_satisfactory=yes, AC_MSG_ERROR([please upgrade to GCC 3.0 or above]))
AC_LANG_RESTORE

1730
libstdc++-v3/configure vendored

File diff suppressed because it is too large Load Diff