mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-22520 Bugfix: Use macro parameter name instead of variable name.
This commit is contained in:
parent
7c48842e23
commit
5eded36279
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ static const CanonicalizationMap CANONICALIZE_MAP[] = {
|
|||
|
||||
/* ### BCP47 Conversion *******************************************/
|
||||
/* Test if the locale id has BCP47 u extension and does not have '@' */
|
||||
#define _hasBCP47Extension(id) (id && uprv_strstr(id, "@") == nullptr && getShortestSubtagLength(localeID) == 1)
|
||||
#define _hasBCP47Extension(id) (id && uprv_strstr(id, "@") == nullptr && getShortestSubtagLength(id) == 1)
|
||||
/* Gets the size of the shortest subtag in the given localeID. */
|
||||
static int32_t getShortestSubtagLength(const char *localeID) {
|
||||
int32_t localeIDLength = static_cast<int32_t>(uprv_strlen(localeID));
|
||||
|
|
Loading…
Add table
Reference in a new issue