1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builtin: use single line imports, to make analysis easier

This commit is contained in:
Delyan Angelov 2020-04-26 08:06:33 +03:00
parent 3166833471
commit 620fc962d7
4 changed files with 5 additions and 13 deletions

View File

@ -3,9 +3,7 @@
// that can be found in the LICENSE file.
module builtin
import (
strings
)
import strings
pub struct array {
pub:

View File

@ -1,6 +1,4 @@
import (
os
)
import os
fn test_syscallwrappers() {
if true { return }

View File

@ -3,9 +3,7 @@
// that can be found in the LICENSE file.
module builtin
import (
strconv.ftoa
)
import strconv.ftoa
#include <float.h>
// ----- f64 to string functions -----

View File

@ -3,10 +3,8 @@
// that can be found in the LICENSE file.
module builtin
import (
strings
hash.wyhash
)
import strings
import hash.wyhash
fn C.memcmp(byteptr, byteptr, int) int