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 21b2c04 commit fb758a3Copy full SHA for fb758a3
libc/src/__support/wchar/character_converter.cpp
@@ -23,8 +23,6 @@ bool CharacterConverter::isComplete() {
23
return state->bytes_processed == state->total_bytes;
24
}
25
26
-int CharacterConverter::push(char8_t utf8_byte) { return utf8_byte; }
27
-
28
int CharacterConverter::push(char32_t utf32) {
29
state->partial = utf32;
30
state->bytes_processed = 0;
@@ -154,9 +152,5 @@ utf_ret<char8_t> CharacterConverter::pop_utf8() {
154
152
return {.out = 0, .error = -1};
155
153
156
157
-utf_ret<char32_t> CharacterConverter::pop_utf32() {
158
- return {.out = 0, .error = -1};
159
-}
160
161
} // namespace internal
162
} // namespace LIBC_NAMESPACE_DECL
0 commit comments