mirror of
https://github.com/vlang/v.git
synced 2025-09-16 16:02:29 +03:00
fmt: add a space around single-line unsafe
expressions (#7505)
This commit is contained in:
parent
b27f5c378c
commit
214290d55b
22 changed files with 108 additions and 108 deletions
|
@ -78,7 +78,7 @@ mut:
|
|||
fn init_os_args_wide(argc int, argv &byteptr) []string {
|
||||
mut args := []string{}
|
||||
for i in 0 .. argc {
|
||||
args << string_from_wide(unsafe {&u16(argv[i])})
|
||||
args << string_from_wide(unsafe { &u16(argv[i]) })
|
||||
}
|
||||
return args
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue