mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-28 18:30:06 +00:00
Remove usage of do in core library
This commit is contained in:
@@ -66,7 +66,9 @@ wstring_to_utf8 :: proc(s: wstring, N: int, allocator := context.temp_allocator)
|
||||
}
|
||||
|
||||
utf16_to_utf8 :: proc(s: []u16, allocator := context.temp_allocator) -> string {
|
||||
if len(s) == 0 do return "";
|
||||
if len(s) == 0 {
|
||||
return "";
|
||||
}
|
||||
return wstring_to_utf8(cast(wstring)&s[0], len(s), allocator);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user