@@ -22,11 +22,11 @@ * @class OFMutableSet OFSet.h ObjFW/OFSet.h * * @brief An abstract class for a mutable unordered set of unique objects. */ #ifdef OF_HAVE_GENERICS -@interface OFMutableSet : OFSet +@interface OFMutableSet: OFSet #else # ifndef DOXYGEN # define ObjectType id # endif @interface OFMutableSet: OFSet @@ -66,26 +66,26 @@ /*! * @brief Removes all objects from the receiver which are in the specified set. * * @param set The set whose objects will be removed from the receiver */ -- (void)minusSet: (OFSet OF_GENERIC(ObjectType)*)set; +- (void)minusSet: (OFSet OF_GENERIC(ObjectType) *)set; /*! * @brief Removes all objects from the receiver which are not in the specified * set. * * @param set The set to intersect with */ -- (void)intersectSet: (OFSet OF_GENERIC(ObjectType)*)set; +- (void)intersectSet: (OFSet OF_GENERIC(ObjectType) *)set; /*! * @brief Creates a union of the receiver and the specified set. * * @param set The set to create the union with */ -- (void)unionSet: (OFSet OF_GENERIC(ObjectType)*)set; +- (void)unionSet: (OFSet OF_GENERIC(ObjectType) *)set; /*! * @brief Converts the mutable set to an immutable set. */ - (void)makeImmutable;