diff options
| author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-18 02:07:54 +0000 |
|---|---|---|
| committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-10-18 02:07:54 +0000 |
| commit | e14a326f259ab3c6fc0dc4e9c02defef8dc50396 (patch) | |
| tree | 77cdaecc8bc7774e89c7b4cb6b43101975fa0f8a | |
| parent | d886af571aea1033393a58d8820abba6d6a791ee (diff) | |
| download | ppe42-gcc-e14a326f259ab3c6fc0dc4e9c02defef8dc50396.tar.gz ppe42-gcc-e14a326f259ab3c6fc0dc4e9c02defef8dc50396.zip | |
* testsuite/27_io/istream_seeks.cc: Fix spelling typo. * testsuite/27_io/ostream_seeks.cc: Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36919 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
| -rw-r--r-- | libstdc++-v3/testsuite/27_io/istream_seeks.cc | 6 | ||||
| -rw-r--r-- | libstdc++-v3/testsuite/27_io/ostream_seeks.cc | 6 |
3 files changed, 11 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ba0fa7dddf3..fd169561b21 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +Tue Oct 17 20:06:59 2000 Martin Buchholz <martin@xemacs.org> + + * testsuite/27_io/istream_seeks.cc: Fix spelling typo. + * testsuite/27_io/ostream_seeks.cc: Similarly. + 2000-10-17 Benjamin Kosnik <bkoz@purist.soma.redhat.com> via Alexandre Oliva <aoliva@redhat.com> diff --git a/libstdc++-v3/testsuite/27_io/istream_seeks.cc b/libstdc++-v3/testsuite/27_io/istream_seeks.cc index 52f6ecb56fb..cc2626dfcd1 100644 --- a/libstdc++-v3/testsuite/27_io/istream_seeks.cc +++ b/libstdc++-v3/testsuite/27_io/istream_seeks.cc @@ -86,19 +86,19 @@ void test04(void) pos01 = is01.tellg(); pos02 = is01.tellg(); VERIFY( pos01 == pos02 ); - // VERIFY( istream::pos_type(0) != pos01 ); //depricated + // VERIFY( istream::pos_type(0) != pos01 ); //deprecated // in pos03 = is02.tellg(); pos04 = is02.tellg(); VERIFY( pos03 == pos04 ); - // VERIFY( istream::pos_type(0) != pos03 ); //depricated + // VERIFY( istream::pos_type(0) != pos03 ); //deprecated // out pos05 = is03.tellg(); pos06 = is03.tellg(); VERIFY( pos05 == pos06 ); - // VERIFY( istream::pos_type(0) != pos01 ); //depricated + // VERIFY( istream::pos_type(0) != pos01 ); //deprecated // istream& seekg(pos_type) // istream& seekg(off_type, ios_base::seekdir) diff --git a/libstdc++-v3/testsuite/27_io/ostream_seeks.cc b/libstdc++-v3/testsuite/27_io/ostream_seeks.cc index 2f5404fa5ac..0d66754f9d2 100644 --- a/libstdc++-v3/testsuite/27_io/ostream_seeks.cc +++ b/libstdc++-v3/testsuite/27_io/ostream_seeks.cc @@ -90,19 +90,19 @@ void test04(void) pos01 = is01.tellp(); pos02 = is01.tellp(); VERIFY( pos01 == pos02 ); - // VERIFY( istream::pos_type(0) != pos01 ); //depricated + // VERIFY( istream::pos_type(0) != pos01 ); //deprecated // in pos03 = is02.tellp(); pos04 = is02.tellp(); VERIFY( pos03 == pos04 ); - // VERIFY( istream::pos_type(0) != pos03 ); //depricated + // VERIFY( istream::pos_type(0) != pos03 ); //deprecated // out pos05 = is03.tellp(); pos06 = is03.tellp(); VERIFY( pos05 == pos06 ); - // VERIFY( istream::pos_type(0) != pos01 ); //depricated + // VERIFY( istream::pos_type(0) != pos01 ); //deprecated // istream& seekg(pos_type) // istream& seekg(off_type, ios_base::seekdir) |

