Skip to content

Commit 842a505

Browse files
committed
style
1 parent 3bdf7ce commit 842a505

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libc/src/__support/wchar/character_converter.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,9 @@ utf_ret<char8_t> CharacterConverter::pop_utf8() {
154154
return {.out = 0, .error = -1};
155155
}
156156

157-
utf_ret<char32_t> CharacterConverter::pop_utf32() { return {0, -1}; }
157+
utf_ret<char32_t> CharacterConverter::pop_utf32() {
158+
return {.out = 0, .error = -1};
159+
}
158160

159161
} // namespace internal
160162
} // namespace LIBC_NAMESPACE_DECL

0 commit comments

Comments
 (0)