diff options
author | Paolo Carlini <pcarlini@unitus.it> | 2003-04-24 00:34:51 +0200 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2003-04-23 22:34:51 +0000 |
commit | 06f5e63748eeb66140858914bbffb149406789a9 (patch) | |
tree | 84935dc9341cd59277dd47e6eba52046327a04d6 | |
parent | 249ed716c84c86f352edebc02cb722a2d39594ca (diff) | |
download | gcc-06f5e63748eeb66140858914bbffb149406789a9.zip gcc-06f5e63748eeb66140858914bbffb149406789a9.tar.gz gcc-06f5e63748eeb66140858914bbffb149406789a9.tar.bz2 |
3.cc: _S_pback_size now belongs to basic_filebuf.
2003-04-23 Paolo Carlini <pcarlini@unitus.it>
* testsuite/27_io/basic_filebuf/3.cc: _S_pback_size now
belongs to basic_filebuf.
* testsuite/27_io/basic_fstream/3.cc: Likewise.
* testsuite/27_io/basic_ifstream/3.cc: Likewise.
* testsuite/27_io/basic_ios/3.cc: Remove _S_pback_size
instantiation (now belongs to basic_filebuf).
* testsuite/27_io/basic_iostream/3.cc: Likewise.
* testsuite/27_io/basic_istream/3.cc: Likewise.
* testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
_S_pback_size now belongs to basic_filebuf.
* testsuite/27_io/basic_istringstream/3.cc: Remove _S_pback_size
instantiation (now belongs to basic_filebuf).
* testsuite/27_io/basic_ofstream/3.cc: _S_pback_size now
belongs to basic_filebuf.
* testsuite/27_io/basic_ostream/3.cc: Remove _S_pback_size
instantiation (now belongs to basic_filebuf).
* testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc:
_S_pback_size now belongs to basic_filebuf.
* testsuite/27_io/basic_ostringstream/3.cc: Remove _S_pback_size
instantiation (now belongs to basic_filebuf).
* testsuite/27_io/basic_streambuf/3.cc: _S_pback_size now belongs
to basic_filebuf.
* testsuite/27_io/basic_stringbuf/3.cc: Remove _S_pback_size
instantiation (now belongs to basic_filebuf).
* testsuite/27_io/basic_stringstream/3.cc: Likewise.
From-SVN: r66018
16 files changed, 42 insertions, 70 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 72659a0..e3cd6ef 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,31 @@ +2003-04-23 Paolo Carlini <pcarlini@unitus.it> + + * testsuite/27_io/basic_filebuf/3.cc: _S_pback_size now + belongs to basic_filebuf. + * testsuite/27_io/basic_fstream/3.cc: Likewise. + * testsuite/27_io/basic_ifstream/3.cc: Likewise. + * testsuite/27_io/basic_ios/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_iostream/3.cc: Likewise. + * testsuite/27_io/basic_istream/3.cc: Likewise. + * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: + _S_pback_size now belongs to basic_filebuf. + * testsuite/27_io/basic_istringstream/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_ofstream/3.cc: _S_pback_size now + belongs to basic_filebuf. + * testsuite/27_io/basic_ostream/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: + _S_pback_size now belongs to basic_filebuf. + * testsuite/27_io/basic_ostringstream/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_streambuf/3.cc: _S_pback_size now belongs + to basic_filebuf. + * testsuite/27_io/basic_stringbuf/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_stringstream/3.cc: Likewise. + 2003-04-23 Benjamin Kosnik <bkoz@redhat.com> * configure.in: Move GLIBCPP_CHECK_PCH before native/cross conditions. diff --git a/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc b/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc index a67d596..ddec01c 100644 --- a/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc @@ -130,8 +130,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc index a9eb113..216e9a2 100644 --- a/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc @@ -134,8 +134,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc index c1d2544..9de0c62 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc @@ -134,8 +134,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ios/3.cc b/libstdc++-v3/testsuite/27_io/basic_ios/3.cc index fa9e8b1..fd3742b 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ios/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ios/3.cc @@ -129,13 +129,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc b/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc index 9cad305..004a363 100644 --- a/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_istream/3.cc b/libstdc++-v3/testsuite/27_io/basic_istream/3.cc index 1a7a04c..8bd7b8a 100644 --- a/libstdc++-v3/testsuite/27_io/basic_istream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_istream/3.cc @@ -129,13 +129,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc index 465e67a..c702757 100644 --- a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc +++ b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc @@ -182,8 +182,8 @@ template std::basic_string<unsigned char>::_Rep::_S_terminal; template - std::basic_streambuf<unsigned char>::int_type - std::basic_streambuf<unsigned char>::_S_pback_size; + std::basic_filebuf<unsigned char>::int_type + std::basic_filebuf<unsigned char>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc index 9b53545..0b051e9 100644 --- a/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc index 0b2d7c9..5149ecd 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc @@ -134,8 +134,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc index 0c71061..09eb94c 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc index e675c8d..a38bddc 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc @@ -153,8 +153,8 @@ template std::basic_string<unsigned char>::_Rep::_S_terminal; template - std::basic_streambuf<unsigned char>::int_type - std::basic_streambuf<unsigned char>::_S_pback_size; + std::basic_filebuf<unsigned char>::int_type + std::basic_filebuf<unsigned char>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc index 777b702..f7e9688 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc b/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc index ffc765f..36e5290 100644 --- a/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc @@ -132,8 +132,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc b/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc index 93358cc..14275c2 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc @@ -127,13 +127,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc index d877dbb..036d7e5 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); |