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 a82f9ee commit 4087711Copy full SHA for 4087711
libc/src/__support/wchar/character_converter.cpp
@@ -74,15 +74,6 @@ int CharacterConverter::push(char8_t utf8_byte) {
74
return -1;
75
}
76
77
-int CharacterConverter::push(char32_t utf32) { return utf32; }
78
-
79
-utf_ret<char8_t> CharacterConverter::pop_utf8() {
80
- utf_ret<char8_t> utf8;
81
- utf8.error = 0;
82
- utf8.out = 0;
83
- return utf8;
84
-}
85
86
utf_ret<char32_t> CharacterConverter::pop_utf32() {
87
utf_ret<char32_t> utf32;
88
utf32.error = 0;
0 commit comments