ICU-22721 Rename scoped variable to not shadow variable in outer scope.

This commit is contained in:
Fredrik Roubert 2024-04-19 18:32:08 +02:00 committed by Fredrik Roubert
parent 6d5555a739
commit ed52e0a25b

View file

@ -971,11 +971,9 @@ TestSurrogateSearching(void) {
* Condition: search the same string while the first char is not an
* surrogate and the last char is the leading surragte.
*/
{
static const UChar s[]={ 0x0020, 0xD9C1 };
if (u_strFindFirst(s, 2, s, 2) != s) {
log_err("error: ending with a partial supplementary code point should match\n");
}
static const UChar s2[]={ 0x0020, 0xD9C1 };
if (u_strFindFirst(s2, 2, s2, 2) != s2) {
log_err("error: ending with a partial supplementary code point should match\n");
}
}