@@ -118,35 +118,35 @@ @interface OFNumber: OFObject { union of_number_value { bool bool_; - signed char schar; - signed short sshort; - signed int sint; - signed long slong; - signed long long slonglong; - unsigned char uchar; - unsigned short ushort; - unsigned int uint; - unsigned long ulong; - unsigned long long ulonglong; + signed char sChar; + signed short sShort; + signed int sInt; + signed long sLong; + signed long long sLongLong; + unsigned char uChar; + unsigned short uShort; + unsigned int uInt; + unsigned long uLong; + unsigned long long uLongLong; int8_t int8; int16_t int16; int32_t int32; int64_t int64; - uint8_t uint8; - uint16_t uint16; - uint32_t uint32; - uint64_t uint64; + uint8_t uInt8; + uint16_t uInt16; + uint32_t uInt32; + uint64_t uInt64; size_t size; - ssize_t ssize; - intmax_t intmax; - uintmax_t uintmax; - ptrdiff_t ptrdiff; - intptr_t intptr; - uintptr_t uintptr; + ssize_t sSize; + intmax_t intMax; + uintmax_t uIntMax; + ptrdiff_t ptrDiff; + intptr_t intPtr; + uintptr_t uIntPtr; float float_; double double_; } _value; of_number_type_t _type; }