mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
fmt: remove inline comments (#19263)
This commit is contained in:
parent
3d2731fca7
commit
18e60e77de
50 changed files with 951 additions and 1034 deletions
|
@ -712,7 +712,10 @@ pub fn executable() string {
|
|||
}
|
||||
$if freebsd {
|
||||
bufsize := usize(max_path_buffer_size)
|
||||
mib := [1 /* CTL_KERN */, 14 /* KERN_PROC */, 12 /* KERN_PROC_PATHNAME */, -1]
|
||||
mib := [1, // CTL_KERN
|
||||
14, // KERN_PROC
|
||||
12, // KERN_PROC_PATHNAME
|
||||
-1]
|
||||
unsafe { C.sysctl(mib.data, mib.len, &result[0], &bufsize, 0, 0) }
|
||||
res := unsafe { tos_clone(&result[0]) }
|
||||
return res
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue