diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-12 21:13:12 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-04-12 21:13:12 +0000 |
commit | f40d58b18b0cdcf909b246a498adbaa1519746c2 (patch) | |
tree | 1eb7cc8d7b8b599c2252dc41d50d61b9f5ef1e92 /libstdc++-v3 | |
parent | 5fd77d06bd2d9c5455dbcc423d3f06c7b713c68b (diff) | |
download | gcc-f40d58b18b0cdcf909b246a498adbaa1519746c2.tar.gz |
* testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
Change basic_streambuf instantiation to "unsigned char".
* testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65526 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc | 4 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 10791e4e6b8..ea8571c2ba0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2003-04-12 David Edelsohn <edelsohn@gnu.org> + + * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: + Change basic_streambuf instantiation to "unsigned char". + * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same. + 2003-04-12 Paolo Carlini <pcarlini@unitus.it> Remove _M_buf_size_opt, use directly _M_buf_size instead. 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 ede3dbcd28e..465e67aeb72 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<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_streambuf<unsigned char>::int_type + std::basic_streambuf<unsigned char>::_S_pback_size; #endif int main() 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 8fe5fd367d1..e675c8db029 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<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_streambuf<unsigned char>::int_type + std::basic_streambuf<unsigned char>::_S_pback_size; #endif int main() |