Index: src/OFObject.h ================================================================== --- src/OFObject.h +++ src/OFObject.h @@ -52,11 +52,11 @@ /** @file */ /** * @brief A result of a comparison. */ -typedef enum { +typedef enum OFComparisonResult { /** The left object is smaller than the right */ OFOrderedAscending = -1, /** Both objects are equal */ OFOrderedSame = 0, /** The left object is bigger than the right */ @@ -75,11 +75,11 @@ #endif /** * @brief An enum for storing endianess. */ -typedef enum { +typedef enum OFByteOrder { /** Most significant byte first (big endian) */ OFByteOrderBigEndian, /** Least significant byte first (little endian) */ OFByteOrderLittleEndian, /** Native byte order of the system */