Opened 6 years ago
Closed 5 years ago
#12572 closed Bugs (fixed)
Typo in case normalization for country locale component
Reported by: | Owned by: | Artyom Beilis | |
---|---|---|---|
Milestone: | To Be Determined | Component: | locale |
Version: | Boost Development Trunk | Severity: | Problem |
Keywords: | Cc: |
Description
https://github.com/boostorg/locale/blob/develop/src/util/locale_data.cpp#L60
if('a' <= tmp[i] && tmp[i]<='a')
tmp[i]=tmp[i]-'a'+'A';
should be
if('a' <= tmp[i] && tmp[i]<='z')
Note:
See TracTickets
for help on using tickets.
Thanks fixed in dev