From: Jonathan Wakely Date: Mon, 11 Nov 2024 11:23:08 +0000 (+0000) Subject: libstdc++: Add parentheses around operand of | X-Git-Tag: releases/gcc-14.3.0~878 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=061d18d7bd4862ff3110d497d42655efbc62ca95;p=thirdparty%2Fgcc.git libstdc++: Add parentheses around operand of | libstdc++-v3/ChangeLog: * include/bits/unicode.h (_Utf_iterator::_M_read_utf16): Add parentheses. --- diff --git a/libstdc++-v3/include/bits/unicode.h b/libstdc++-v3/include/bits/unicode.h index a14a17c5dfcf..4b408948d722 100644 --- a/libstdc++-v3/include/bits/unicode.h +++ b/libstdc++-v3/include/bits/unicode.h @@ -377,7 +377,7 @@ namespace __unicode { ++_M_curr(); __to_incr = 2; - uint32_t __x = (__u & 0x3F) << 10 | __u2 & 0x3FF; + uint32_t __x = (__u & 0x3F) << 10 | (__u2 & 0x3FF); uint32_t __w = (__u >> 6) & 0x1F; __c = (__w + 1) << 16 | __x; }