mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-23004 Code Review: Replace C-style casts with brace initialization.
This commit is contained in:
parent
a1e85d23a0
commit
f03a3136e1
1 changed files with 2 additions and 2 deletions
|
@ -738,10 +738,10 @@ public:
|
|||
uint8_t b = *--p;
|
||||
if (b >= 0xc0) {
|
||||
U8_MASK_LEAD_BYTE(b, count);
|
||||
c |= uint32_t(b) << shift;
|
||||
c |= uint32_t{b} << shift;
|
||||
break;
|
||||
} else {
|
||||
c |= uint32_t(b & 0x3f) << shift;
|
||||
c |= (uint32_t{b} & 0x3f) << shift;
|
||||
++count;
|
||||
shift += 6;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue