]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb] Remove '/**<' comment marker
authorTom de Vries <tdevries@suse.de>
Mon, 1 Jun 2026 18:14:37 +0000 (20:14 +0200)
committerTom de Vries <tdevries@suse.de>
Mon, 1 Jun 2026 18:14:37 +0000 (20:14 +0200)
Another comment marker doxygen supports is "/**<".  Replace it with "/*".

Suggested-By: Kevin Buettner <kevinb@redhat.com>
Approved-By: Tom Tromey <tom@tromey.com>
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=34186

gdb/gdbtypes.h
gdb/type-codes.def

index d08cf73711f5e81fca24d04f78d1f42c01015408..97adbe61db874c6a387cde094fa9c2ad67b73cca 100644 (file)
@@ -63,7 +63,7 @@ struct dwarf2_property_baton;
 
 enum type_code
   {
-    TYPE_CODE_UNDEF = 0,       /**< Not used; catches errors */
+    TYPE_CODE_UNDEF = 0,       /* Not used; catches errors */
 
 #define OP(X) X,
 #include "type-codes.def"
@@ -483,12 +483,12 @@ struct dynamic_prop_list
 
 enum field_loc_kind
   {
-    FIELD_LOC_KIND_BITPOS,     /**< bitpos */
-    FIELD_LOC_KIND_ENUMVAL,    /**< enumval */
-    FIELD_LOC_KIND_PHYSADDR,   /**< physaddr */
-    FIELD_LOC_KIND_PHYSNAME,   /**< physname */
+    FIELD_LOC_KIND_BITPOS,     /* bitpos */
+    FIELD_LOC_KIND_ENUMVAL,    /* enumval */
+    FIELD_LOC_KIND_PHYSADDR,   /* physaddr */
+    FIELD_LOC_KIND_PHYSNAME,   /* physname */
     /* A DWARF block that computes the address of the field.  */
-    FIELD_LOC_KIND_DWARF_BLOCK_ADDR,   /**< dwarf_block */
+    FIELD_LOC_KIND_DWARF_BLOCK_ADDR,   /* dwarf_block */
     /* A DWARF block that computes the bit offset of the field.  */
     FIELD_LOC_KIND_DWARF_BLOCK_BITPOS,
   };
index ebc391c81aee1fd9ee64d8b8e5cca5a5b4264db2..afd2b12d9bae0b2ab38575e161c7731777e7f8f6 100644 (file)
@@ -17,7 +17,7 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
-OP (TYPE_CODE_PTR)             /**< Pointer type */
+OP (TYPE_CODE_PTR)             /* Pointer type */
 
 /* Array type with lower & upper bounds.
 
@@ -39,12 +39,12 @@ OP (TYPE_CODE_PTR)          /**< Pointer type */
    from right to left, not left to right.  */
 OP (TYPE_CODE_ARRAY)
 
-OP (TYPE_CODE_STRUCT)          /**< C struct or Pascal record */
-OP (TYPE_CODE_UNION)           /**< C union or Pascal variant part */
-OP (TYPE_CODE_ENUM)            /**< Enumeration type */
-OP (TYPE_CODE_FLAGS)           /**< Bit flags type */
-OP (TYPE_CODE_FUNC)            /**< Function type */
-OP (TYPE_CODE_INT)             /**< Integer type */
+OP (TYPE_CODE_STRUCT)          /* C struct or Pascal record */
+OP (TYPE_CODE_UNION)           /* C union or Pascal variant part */
+OP (TYPE_CODE_ENUM)            /* Enumeration type */
+OP (TYPE_CODE_FLAGS)           /* Bit flags type */
+OP (TYPE_CODE_FUNC)            /* Function type */
+OP (TYPE_CODE_INT)             /* Integer type */
 
 /* Floating type.  This is *NOT* a complex type.  */
 OP (TYPE_CODE_FLT)
@@ -57,8 +57,8 @@ OP (TYPE_CODE_FLT)
    type is a generic pointer.  */
 OP (TYPE_CODE_VOID)
 
-OP (TYPE_CODE_SET)             /**< Pascal sets */
-OP (TYPE_CODE_RANGE)           /**< Range (integers within spec'd bounds).  */
+OP (TYPE_CODE_SET)             /* Pascal sets */
+OP (TYPE_CODE_RANGE)           /* Range (integers within spec'd bounds).  */
 
 /* A string type which is like an array of character but prints
    differently.  It does not contain a length field as Pascal
@@ -72,7 +72,7 @@ OP (TYPE_CODE_STRING)
 OP (TYPE_CODE_ERROR)
 
 /* C++ */
-OP (TYPE_CODE_METHOD)          /**< Method type */
+OP (TYPE_CODE_METHOD)          /* Method type */
 
 /* Pointer-to-member-function type.  This describes how to access a
    particular member function of a class (possibly a virtual
@@ -87,26 +87,26 @@ OP (TYPE_CODE_METHODPTR)
    platforms).  */
 OP (TYPE_CODE_MEMBERPTR)
 
-OP (TYPE_CODE_REF)             /**< C++ Reference types */
+OP (TYPE_CODE_REF)             /* C++ Reference types */
 
-OP (TYPE_CODE_RVALUE_REF)      /**< C++ rvalue reference types */
+OP (TYPE_CODE_RVALUE_REF)      /* C++ rvalue reference types */
 
-OP (TYPE_CODE_CHAR)            /**< *real* character type */
+OP (TYPE_CODE_CHAR)            /* *real* character type */
 
 /* Boolean type.  0 is false, 1 is true, and other values are
    non-boolean (e.g. FORTRAN "logical" used as unsigned int).  */
 OP (TYPE_CODE_BOOL)
 
 /* Fortran */
-OP (TYPE_CODE_COMPLEX)         /**< Complex float */
+OP (TYPE_CODE_COMPLEX)         /* Complex float */
 
 OP (TYPE_CODE_TYPEDEF)
 
-OP (TYPE_CODE_NAMESPACE)       /**< C++ namespace.  */
+OP (TYPE_CODE_NAMESPACE)       /* C++ namespace.  */
 
-OP (TYPE_CODE_DECFLOAT)                /**< Decimal floating point.  */
+OP (TYPE_CODE_DECFLOAT)                /* Decimal floating point.  */
 
-OP (TYPE_CODE_MODULE)          /**< Fortran module.  */
+OP (TYPE_CODE_MODULE)          /* Fortran module.  */
 
 /* Internal function type.  */
 OP (TYPE_CODE_INTERNAL_FUNCTION)