From: Tom de Vries Date: Mon, 1 Jun 2026 18:14:37 +0000 (+0200) Subject: [gdb] Remove '/**<' comment marker X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56d1cb796fa05735d71b7a5a29d73642b70fc96e;p=thirdparty%2Fbinutils-gdb.git [gdb] Remove '/**<' comment marker Another comment marker doxygen supports is "/**<". Replace it with "/*". Suggested-By: Kevin Buettner Approved-By: Tom Tromey Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=34186 --- diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index d08cf73711f..97adbe61db8 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -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, }; diff --git a/gdb/type-codes.def b/gdb/type-codes.def index ebc391c81ae..afd2b12d9ba 100644 --- a/gdb/type-codes.def +++ b/gdb/type-codes.def @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -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)