Index: src/OFEnumerator.h ================================================================== --- src/OFEnumerator.h +++ src/OFEnumerator.h @@ -81,17 +81,17 @@ * @brief State information for fast enumerations. */ #define of_fast_enumeration_state_t NSFastEnumerationState #ifndef NSINTEGER_DEFINED typedef struct { - /// Arbitrary state information for the enumeration + /*! Arbitrary state information for the enumeration */ unsigned long state; - /// Pointer to a C array of objects to return + /*! Pointer to a C array of objects to return */ id __unsafe_unretained _Nullable *_Nullable itemsPtr; - /// Arbitrary state information to detect mutations + /*! Arbitrary state information to detect mutations */ unsigned long *_Nullable mutationsPtr; - /// Additional arbitrary state information + /*! Additional arbitrary state information */ unsigned long extra[5]; } of_fast_enumeration_state_t; #endif /*! Index: src/OFMapTable.h ================================================================== --- src/OFMapTable.h +++ src/OFMapTable.h @@ -25,17 +25,17 @@ * @struct of_map_table_functions_t OFMapTable.h ObjFW/OFMapTable.h * * @brief A struct describing the functions to be used by the map table. */ typedef struct { - /// The function to retain keys / objects + /*! The function to retain keys / objects */ void *_Nonnull (*_Nullable retain)(void *object); - /// The function to release keys / objects + /*! The function to release keys / objects */ void (*_Nullable release)(void *object); - /// The function to hash keys + /*! The function to hash keys */ uint32_t (*_Nullable hash)(void *object); - /// The function to compare keys / objects + /*! The function to compare keys / objects */ bool (*_Nullable equal)(void *object1, void *object2); } of_map_table_functions_t; #ifdef OF_HAVE_BLOCKS /*!