diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-06-11 21:00:39 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-06-15 00:57:52 +0100 |
| commit | 07a24bec9a578857920f4c5508f1d7eea65177b8 (patch) | |
| tree | 3edd81d1bff8219dd9122291041b28c5ea5ec9ce /src/codegen/c/Type.zig | |
| parent | e39cc0dff7fff510c3d72f61947b977589ea5583 (diff) | |
| download | zig-07a24bec9a578857920f4c5508f1d7eea65177b8.tar.gz zig-07a24bec9a578857920f4c5508f1d7eea65177b8.zip | |
compiler: move LazySrcLoc out of std
This is in preparation for some upcoming changes to how we represent
source locations in the compiler. The bulk of the change here is dealing
with the removal of `src()` methods from `Zir` types.
Diffstat (limited to 'src/codegen/c/Type.zig')
| -rw-r--r-- | src/codegen/c/Type.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c/Type.zig b/src/codegen/c/Type.zig index d38cd5d400..3a0e3b42f8 100644 --- a/src/codegen/c/Type.zig +++ b/src/codegen/c/Type.zig @@ -2581,8 +2581,8 @@ pub const AlignAs = packed struct { const Alignment = @import("../../InternPool.zig").Alignment; const assert = std.debug.assert; const CType = @This(); -const DeclIndex = std.zig.DeclIndex; const Module = @import("../../Package/Module.zig"); const std = @import("std"); const Type = @import("../../type.zig").Type; const Zcu = @import("../../Module.zig"); +const DeclIndex = @import("../../InternPool.zig").DeclIndex; |
