@@ -36,17 +36,13 @@ * A class for managing strings. */ @interface OFString: OFObject { char *string; -#ifdef __objc_INCLUDE_GNU unsigned int length; -#else - int length; -#if __LP64__ +#if !defined(__objc_INCLUDE_GNU) && __LP64__ int _unused; -#endif #endif BOOL is_utf8; } /**