* testsuite/27_io/istream_seeks.cc: Fix spelling typo. * testsuite/27_io/ostre...
authorMartin Buchholz <martin@xemacs.org>
Wed, 18 Oct 2000 02:07:54 +0000 (02:07 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 18 Oct 2000 02:07:54 +0000 (20:07 -0600)
From-SVN: r36919

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/27_io/istream_seeks.cc
libstdc++-v3/testsuite/27_io/ostream_seeks.cc

index ba0fa7dddf3d9744c04930cdf7d358e7569516be..fd169561b21ed18cd87ba441a0957c3f0b5fd7ba 100644 (file)
@@ -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>
index 52f6ecb56fbc5cc0a24468b6260a7c6e00fd26f2..cc2626dfcd1b7b4375f61f225d6e26ce99ca7163 100644 (file)
@@ -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)
index 2f5404fa5ac3602ed557b097a2cebbd07963afaa..0d66754f9d2c8ba774fa282d256e11b7feecc75c 100644 (file)
@@ -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)