@@ -145,25 +145,25 @@ * * @brief A class for introspecting classes. */ @interface OFIntrospection: OFObject { - OFMutableArray OF_GENERIC(OFMethod*) *_classMethods; - OFMutableArray OF_GENERIC(OFMethod*) *_instanceMethods; - OFMutableArray OF_GENERIC(OFProperty*) *_properties; - OFMutableArray OF_GENERIC(OFInstanceVariable*) *_instanceVariables; + OFMutableArray OF_GENERIC(OFMethod *) *_classMethods; + OFMutableArray OF_GENERIC(OFMethod *) *_instanceMethods; + OFMutableArray OF_GENERIC(OFProperty *) *_properties; + OFMutableArray OF_GENERIC(OFInstanceVariable *) *_instanceVariables; } /*! * The class methods of the class. */ -@property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod*) *classMethods; +@property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod *) *classMethods; /*! * The instance methods of the class. */ -@property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod*) *instanceMethods; +@property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod *) *instanceMethods; /*! * The properties of the class. * * @warning **Do not rely on this, as this behaves differently depending on the @@ -181,17 +181,17 @@ * used. * * @warning GCC does not emit any data for property introspection for the GNU * ABI. */ -@property (readonly, nonatomic) OFArray OF_GENERIC(OFProperty*) *properties; +@property (readonly, nonatomic) OFArray OF_GENERIC(OFProperty *) *properties; /*! * The instance variables of the class. */ @property (readonly, nonatomic) - OFArray OF_GENERIC(OFInstanceVariable*) *instanceVariables; + OFArray OF_GENERIC(OFInstanceVariable *) *instanceVariables; /* TODO: protocols */ /*! * @brief Creates a new introspection for the specified class.