std: change @import("builtin") to std.builtin

This commit is contained in:
Andrew Kelley
2021-04-12 16:43:50 -07:00
parent a4bb7c8bb1
commit 429cd2b5dd
86 changed files with 263 additions and 268 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ const assert = std.debug.assert;
const testing = std.testing;
const mem = std.mem;
const math = std.math;
const builtin = @import("builtin");
const builtin = std.builtin;
pub fn binarySearch(
comptime T: type,