aboutsummaryrefslogtreecommitdiff
path: root/lib/std/pdb.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-04-12 16:43:50 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-04-15 19:06:39 -0700
commit429cd2b5dd27bec15a4a3351114ce1bcd12d8d01 (patch)
tree6f0dda8c4a63d7944046bf9a580e20ba304de814 /lib/std/pdb.zig
parenta4bb7c8bb17a4ac692401946df6b9f4cc3e5b1b2 (diff)
downloadzig-429cd2b5dd27bec15a4a3351114ce1bcd12d8d01.tar.gz
zig-429cd2b5dd27bec15a4a3351114ce1bcd12d8d01.zip
std: change `@import("builtin")` to `std.builtin`
Diffstat (limited to 'lib/std/pdb.zig')
-rw-r--r--lib/std/pdb.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/pdb.zig b/lib/std/pdb.zig
index 6a47cd6e8b..de0b8f3ec0 100644
--- a/lib/std/pdb.zig
+++ b/lib/std/pdb.zig
@@ -3,7 +3,7 @@
// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
// The MIT license requires this copyright notice to be included in all copies
// and substantial portions of the software.
-const builtin = @import("builtin");
+const builtin = std.builtin;
const std = @import("std.zig");
const io = std.io;
const math = std.math;