Fixed builtin.Target -> std.Target

This commit is contained in:
Carlos Zúñiga
2021-07-06 12:37:31 -05:00
committed by Veikka Tuominen
parent 23f414b927
commit b936bbd2f1

View File

@@ -14,7 +14,7 @@ const SetLastError = windows.kernel32.SetLastError;
fn selectSymbol(comptime function_static: anytype, function_dynamic: @TypeOf(function_static), comptime os: std.Target.Os.WindowsVersion) @TypeOf(function_static) {
comptime {
const sym_ok = builtin.Target.current.os.isAtLeast(.windows, os);
const sym_ok = std.Target.current.os.isAtLeast(.windows, os);
if (sym_ok == true) return function_static;
if (sym_ok == null) return function_dynamic;
if (sym_ok == false) @compileError("Target OS range does not support function, at least " ++ @tagName(os) ++ " is required");