@@ -71,11 +71,11 @@ * @brief A class for describing a property. */ @interface OFProperty: OFObject { OFString *_name; - unsigned _attributes; + unsigned int _attributes; OFString *_Nullable _getter, *_Nullable _setter; } /*! * The name of the property. @@ -97,11 +97,11 @@ * OF_PROPERTY_ATOMIC | The property is declared `atomic` * OF_PROPERTY_WEAK | The property is declared `weak` * OF_PROPERTY_SYNTHESIZED | The property is synthesized * OF_PROPERTY_DYNAMIC | The property is dynamic */ -@property (readonly, nonatomic) unsigned attributes; +@property (readonly, nonatomic) unsigned int attributes; /*! * The name of the getter. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *getter;