ICU-4416 Make sure that surrogates aren't listed for UTF-16 and UTF-32
X-SVN-Rev: 17940
This commit is contained in:
parent
7ebe8124c8
commit
aee4b9cb87
@ -567,7 +567,7 @@ static const UConverterImpl _UTF16BEImpl={
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
ucnv_getCompleteUnicodeSet
|
||||
ucnv_getNonSurrogateUnicodeSet
|
||||
};
|
||||
|
||||
static const UConverterStaticData _UTF16BEStaticData={
|
||||
@ -1121,7 +1121,7 @@ static const UConverterImpl _UTF16LEImpl={
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
ucnv_getCompleteUnicodeSet
|
||||
ucnv_getNonSurrogateUnicodeSet
|
||||
};
|
||||
|
||||
|
||||
@ -1343,7 +1343,7 @@ static const UConverterImpl _UTF16Impl = {
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
ucnv_getCompleteUnicodeSet
|
||||
ucnv_getNonSurrogateUnicodeSet
|
||||
};
|
||||
|
||||
static const UConverterStaticData _UTF16StaticData = {
|
||||
|
@ -476,7 +476,7 @@ static const UConverterImpl _UTF32BEImpl = {
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
ucnv_getCompleteUnicodeSet
|
||||
ucnv_getNonSurrogateUnicodeSet
|
||||
};
|
||||
|
||||
/* The 1232 CCSID refers to any version of Unicode with any endianess of UTF-32 */
|
||||
@ -969,7 +969,7 @@ static const UConverterImpl _UTF32LEImpl = {
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
ucnv_getCompleteUnicodeSet
|
||||
ucnv_getNonSurrogateUnicodeSet
|
||||
};
|
||||
|
||||
/* The 1232 CCSID refers to any version of Unicode with any endianess of UTF-32 */
|
||||
@ -1216,7 +1216,7 @@ static const UConverterImpl _UTF32Impl = {
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
ucnv_getCompleteUnicodeSet
|
||||
ucnv_getNonSurrogateUnicodeSet
|
||||
};
|
||||
|
||||
/* The 1236 CCSID refers to any version of Unicode with a BOM sensitive endianess of UTF-32 */
|
||||
|
Loading…
Reference in New Issue
Block a user