Fix comments that misspell names of files and classes
authorJonathan Wakely <jwakely@redhat.com>
Thu, 12 Apr 2018 20:55:02 +0000 (21:55 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Thu, 12 Apr 2018 20:55:02 +0000 (21:55 +0100)
* src/c++11/Makefile.am: Fix comment.
* src/c++11/Makefile.in: Regenerate.
* src/c++11/cxx11-ios_failure.cc: Fix comment.
* src/c++98/ios_failure.cc: Likewise.

From-SVN: r259357

libstdc++-v3/ChangeLog
libstdc++-v3/src/c++11/Makefile.am
libstdc++-v3/src/c++11/Makefile.in
libstdc++-v3/src/c++11/cxx11-ios_failure.cc
libstdc++-v3/src/c++98/ios_failure.cc

index b38be432cc74816bce91fec3fa7a5ee775193286..e0069a6854c937981f7d10fcf7cd9c0a18396861 100644 (file)
@@ -1,5 +1,10 @@
 2018-04-12  Jonathan Wakely  <jwakely@redhat.com>
 
+       * src/c++11/Makefile.am: Fix comment.
+       * src/c++11/Makefile.in: Regenerate.
+       * src/c++11/cxx11-ios_failure.cc: Fix comment.
+       * src/c++98/ios_failure.cc: Likewise.
+
        * src/c++11/ios.cc: Remove redundant macro definition.
 
 2018-04-11  Jonathan Wakely  <jwakely@redhat.com>
index 6f49f0d55d391acacc4e29ed6d1c349c0880160f..8d524b672323e2ae1ef0e01885f73f7c7e695ecb 100644 (file)
@@ -127,7 +127,7 @@ hashtable_c++0x.o: hashtable_c++0x.cc
        $(CXXCOMPILE) -fimplicit-templates -c $<
 
 if ENABLE_DUAL_ABI
-# Rewrite the type info for __dual_abi_ios_failure.
+# Rewrite the type info for __ios_failure.
 rewrite_ios_failure_typeinfo = sed -e '/^_ZTISt13__ios_failure:$$/{' \
        -e 'n' \
        -e 's/_ZTVN10__cxxabiv120__si_class_type_infoE/_ZTVSt19__iosfail_type_info/' \
index 26833b04b424638b8c301fd47bd2077ef7b6f156..1ae782d7e969e86d575b7f5e6a5042be01a3995e 100644 (file)
@@ -434,7 +434,7 @@ sources = \
 
 libc__11convenience_la_SOURCES = $(sources)  $(inst_sources)
 
-# Rewrite the type info for __dual_abi_ios_failure.
+# Rewrite the type info for __ios_failure.
 @ENABLE_DUAL_ABI_TRUE@rewrite_ios_failure_typeinfo = sed -e '/^_ZTISt13__ios_failure:$$/{' \
 @ENABLE_DUAL_ABI_TRUE@ -e 'n' \
 @ENABLE_DUAL_ABI_TRUE@ -e 's/_ZTVN10__cxxabiv120__si_class_type_infoE/_ZTVSt19__iosfail_type_info/' \
index 847b5946234b8ac9f106b73908a074b8953c7e08..b1e4bfb2b4444dea308f3426338e41f921d8226c 100644 (file)
@@ -140,7 +140,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   // __ios_failure can be upcast to the type in a catch handler.
   bool
   __iosfail_type_info::__do_upcast(const __class_type_info *dst_type,
-                               void **obj_ptr) const
+                                  void **obj_ptr) const
   {
     // If the handler is for the gcc4-compatible ios::failure type then
     // catch the object stored in __ios_failure::buf instead of
@@ -150,7 +150,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        *obj_ptr = static_cast<__ios_failure*>(*obj_ptr)->buf;
        return true;
       }
-    // Otherwise proceeed as normal to see if the handler matches.
+    // Otherwise proceed as normal to see if the handler matches.
     return __class_type_info::__do_upcast(dst_type, obj_ptr);
   }
 #else // ! __cpp_rtti
index a2fc5593e15ef94dc0fe2ee61d0c568e8bf0f016..49d24f49620e31bdee3ea42fd54859c32943f516 100644 (file)
@@ -57,7 +57,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
 #if _GLIBCXX_USE_DUAL_ABI
   // When the dual ABI is enabled __throw_ios_failure() is defined in
-  // src/c++11/ios_failure.cc
+  // src/c++11/cxx11-ios_failure.cc
 #if __cpp_rtti
   // If RTTI is enabled the exception type thrown will use these functions to
   // construct/destroy a gcc4-compatible ios::failure object in a buffer,