ICU-2984 Use fewer magic numbers

X-SVN-Rev: 12335
This commit is contained in:
George Rhoten 2003-06-05 23:55:52 +00:00
parent cb24fda3d8
commit 88fe03639c

View File

@ -137,7 +137,7 @@ static CReg* gCRegHead = 0;
struct CReg : public UMemory {
CReg *next;
UChar iso[4];
char id[12];
char id[ULOC_FULLNAME_CAPACITY];
CReg(const UChar* _iso, const char* _id)
: next(0)