@@ -63,11 +63,11 @@ typedef OFChar32 OFUnichar; /** * @brief The encoding of a string. */ -typedef enum OFStringEncoding { +typedef enum { /* * UTF-8 *has* to be 0, so that if the current @ref OFLocale is * `nil`, `[OFLocale encoding]` returns UTF-8. */ /** UTF-8 */ @@ -105,21 +105,21 @@ /** * @brief Options for searching in strings. * * This is a bit mask. */ -typedef enum OFStringSearchOptions { +typedef enum { /** Search backwards in the string */ OFStringSearchBackwards = 1 } OFStringSearchOptions; /** * @brief Options for separating strings. * * This is a bit mask. */ -typedef enum OFStringSeparationOptions { +typedef enum { /** Skip empty components */ OFStringSkipEmptyComponents = 1 } OFStringSeparationOptions; #ifdef OF_HAVE_BLOCKS