Skip to content

Commit 8b2e2a9

Browse files
author
Sriya Pratipati
committed
formatting fix
1 parent 039429d commit 8b2e2a9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

libc/src/__support/wchar/character_converter.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ int CharacterConverter::push(char8_t utf8_byte) {
7373
clear();
7474
return -1;
7575
}
76-
76+
7777
int CharacterConverter::push(char32_t utf32) {
7878
// we can't be partially through a conversion when pushing a utf32 value
7979
if (!isComplete())
@@ -109,7 +109,6 @@ ErrorOr<char32_t> CharacterConverter::pop_utf32() {
109109
return utf32;
110110
}
111111

112-
113112
ErrorOr<char8_t> CharacterConverter::pop_utf8() {
114113
if (isComplete())
115114
return Error(-1);

0 commit comments

Comments
 (0)