Remove if ODIN_OS == .Windows in file that can only be built on Windows

This commit is contained in:
Feoramund
2025-03-21 19:14:15 -04:00
parent 3525e71739
commit 6a6980fda8
-2
View File
@@ -315,7 +315,6 @@ _is_UNC :: proc(path: string) -> bool {
} }
_volume_name_len :: proc(path: string) -> int { _volume_name_len :: proc(path: string) -> int {
if ODIN_OS == .Windows {
if len(path) < 2 { if len(path) < 2 {
return 0 return 0
} }
@@ -348,6 +347,5 @@ _volume_name_len :: proc(path: string) -> int {
break break
} }
} }
}
return 0 return 0
} }