@@ -29,13 +29,13 @@ * For security reasons, serialization and deserialization is only implemented * for OFDataArrays with item size 1. */ @interface OFDataArray: OFObject { - uint8_t *items; - size_t count; - size_t itemSize; + uint8_t *_items; + size_t _count; + size_t _itemSize; } #ifdef OF_HAVE_PROPERTIES @property (readonly) void *items; @property (readonly) size_t count; @@ -276,10 +276,10 @@ * and is designed to store large hunks of data. Therefore, it allocates * memory in pages rather than a chunk of memory for each item. */ @interface OFBigDataArray: OFDataArray { - size_t size; + size_t _size; } @end #import "OFDataArray+Hashing.h"