diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-11-25 04:11:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-25 04:11:46 -0500 |
| commit | 648f592db10d3354dcf7e36264291dd82f4d0e3a (patch) | |
| tree | 3658d6c3541a2ae95321d25ef84707f0ab7ef669 /src/Module.zig | |
| parent | 18608223ef5e588598d21dfe71678dbc62f320e4 (diff) | |
| parent | c6e02044da8ce1176fa67fe2d1c6de7802927171 (diff) | |
| download | zig-648f592db10d3354dcf7e36264291dd82f4d0e3a.tar.gz zig-648f592db10d3354dcf7e36264291dd82f4d0e3a.zip | |
Merge pull request #18109 from nektro/std-compiler
compiler: move BuiltinFn and AstRlAnnotate to std.zig namespace
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig index 9112523d33..fd5bb5b5dc 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -34,7 +34,7 @@ const isUpDir = @import("introspect.zig").isUpDir; const clang = @import("clang.zig"); const InternPool = @import("InternPool.zig"); const Alignment = InternPool.Alignment; -const BuiltinFn = @import("BuiltinFn.zig"); +const BuiltinFn = std.zig.BuiltinFn; comptime { @setEvalBranchQuota(4000); |
