mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
builtin: minor cleanup in sorted_map.v (#18502)
This commit is contained in:
parent
867f4376d8
commit
d7a50b4a22
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ fn new_sorted_map_init(n int, value_bytes int, keys &string, values voidptr) Sor
|
||||||
// each insertion.
|
// each insertion.
|
||||||
fn new_node() &mapnode {
|
fn new_node() &mapnode {
|
||||||
return &mapnode{
|
return &mapnode{
|
||||||
children: 0
|
children: unsafe { nil }
|
||||||
len: 0
|
len: 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue