ICU-3258 Fix a CygWin problem

X-SVN-Rev: 14124
This commit is contained in:
George Rhoten 2003-12-13 09:23:16 +00:00
parent 3e927b74e0
commit 4638cf90df

View File

@ -282,13 +282,21 @@ public:
* Minimum value that can be stored in a UnicodeSet.
* @draft ICU 2.4
*/
#ifdef U_CYGWIN
static U_COMMON_API const UChar32 MIN_VALUE;
#else
static const UChar32 MIN_VALUE;
#endif
/**
* Maximum value that can be stored in a UnicodeSet.
* @draft ICU 2.4
*/
#ifdef U_CYGWIN
static U_COMMON_API const UChar32 MAX_VALUE;
#else
static const UChar32 MAX_VALUE;
#endif
//----------------------------------------------------------------
// Constructors &c