From 48594668a7a75c47856e09cf028b735a889c3462 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Thu, 25 Jul 2002 16:36:40 +0000 Subject: [PATCH] ICU-900 Fixed a doxygen warning X-SVN-Rev: 9333 --- icu4c/source/common/unicode/utypes.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/icu4c/source/common/unicode/utypes.h b/icu4c/source/common/unicode/utypes.h index 5db17d7498..db58988d4b 100644 --- a/icu4c/source/common/unicode/utypes.h +++ b/icu4c/source/common/unicode/utypes.h @@ -353,7 +353,7 @@ typedef void* UClassID; * \par * Error codes should be tested using U_FAILURE() and U_SUCCESS(). */ -enum UErrorCode { +typedef enum UErrorCode { /* The ordering of U_ERROR_INFO_START Vs U_USING_FALLBACK_WARNING looks weird * and is that way because VC++ debugger displays first encountered constant, * which is not the what the code is used for @@ -496,11 +496,7 @@ enum UErrorCode { U_BRK_ERROR_LIMIT, U_ERROR_LIMIT=U_BRK_ERROR_LIMIT /**< This must always be the last value to indicate the limit for UErrorCode (last error code +1) */ -}; - -#ifndef XP_CPLUSPLUS -typedef enum UErrorCode UErrorCode; -#endif +} UErrorCode; /* Use the following to determine if an UErrorCode represents */ /* operational success or failure. */