mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
ICU-22721 Rename scoped variable to not shadow variable in outer scope.
This commit is contained in:
parent
6d5555a739
commit
ed52e0a25b
1 changed files with 3 additions and 5 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue