Skip to content

Commit 54c64e0

Browse files
author
Sriya Pratipati
committed
fixed formatting
1 parent 9561ab5 commit 54c64e0

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

libc/src/__support/wchar/character_converter.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ int CharacterConverter::push(char8_t utf8_byte) {
5858
}
5959
// Invalid
6060
else {
61-
state->bytes_processed++;
62-
return -1;
61+
state->bytes_processed++;
62+
return -1;
6363
}
6464
}
6565
// Any subsequent push
@@ -74,9 +74,7 @@ int CharacterConverter::push(char8_t utf8_byte) {
7474
return -1;
7575
}
7676

77-
int CharacterConverter::push(char32_t utf32) {
78-
return utf32;
79-
}
77+
int CharacterConverter::push(char32_t utf32) { return utf32; }
8078

8179
utf_ret<char8_t> CharacterConverter::pop_utf8() {
8280
utf_ret<char8_t> utf8;

0 commit comments

Comments
 (0)