ICU-23004 Code Review: Replace C-style casts with brace initialization.

This commit is contained in:
Fredrik Roubert 2025-03-19 19:29:49 +01:00
parent a1e85d23a0
commit f03a3136e1
No known key found for this signature in database
GPG key ID: 9B432B27D1BA20D7

View file

@ -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;
}