From f6e2d74d10d4f8ade814a0ed36bed4d98eae768c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 14 Dec 2020 14:36:45 +0000 Subject: Keep -vet happy --- core/path/filepath/path.odin | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'core/path/filepath/path.odin') diff --git a/core/path/filepath/path.odin b/core/path/filepath/path.odin index 3a11c09e8..f19a10d46 100644 --- a/core/path/filepath/path.odin +++ b/core/path/filepath/path.odin @@ -2,7 +2,6 @@ // To process paths usch as URLs that depend on forward slashes regardless of the OS, use the path package package filepath -import "core:os" import "core:strings" // is_separator checks whether the byte is a valid separator character @@ -265,7 +264,7 @@ rel :: proc(base_path, target_path: string, allocator := context.allocator) -> ( } buf := make([]byte, size); n := copy(buf, ".."); - for i in 0..