We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6604e commit 6104232Copy full SHA for 6104232
libc/src/__support/wchar/character_converter.cpp
@@ -54,7 +54,7 @@ ErrorOr<char8_t> CharacterConverter::pop_utf8() {
54
// the number of bits per utf-8 byte that actually encode character
55
// information not metadata (# of bits excluding the byte headers)
56
const int ENCODED_BITS_PER_BYTE = 6;
57
- const int MASK_LOWER_SIX =
+ const int MASK_ENCODED_BITS =
58
mask_trailing_ones<unsigned int, ENCODED_BITS_PER_BYTE>();
59
60
char32_t output;
0 commit comments