Skip to content

Commit fb758a3

Browse files
committed
removed unimplemented functions from cpp
1 parent 21b2c04 commit fb758a3

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

libc/src/__support/wchar/character_converter.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ bool CharacterConverter::isComplete() {
2323
return state->bytes_processed == state->total_bytes;
2424
}
2525

26-
int CharacterConverter::push(char8_t utf8_byte) { return utf8_byte; }
27-
2826
int CharacterConverter::push(char32_t utf32) {
2927
state->partial = utf32;
3028
state->bytes_processed = 0;
@@ -154,9 +152,5 @@ utf_ret<char8_t> CharacterConverter::pop_utf8() {
154152
return {.out = 0, .error = -1};
155153
}
156154

157-
utf_ret<char32_t> CharacterConverter::pop_utf32() {
158-
return {.out = 0, .error = -1};
159-
}
160-
161155
} // namespace internal
162156
} // namespace LIBC_NAMESPACE_DECL

0 commit comments

Comments
 (0)