Commit 189244a4 by Martin Buchholz Committed by Jeff Law

* testsuite/27_io/istream_seeks.cc: Fix spelling typo. *…

* testsuite/27_io/istream_seeks.cc: Fix spelling typo.        * testsuite/27_io/ostream_seeks.cc: Similarly.

From-SVN: r36919
parent 33e39e38
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>
......
......@@ -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)
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment