aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/c/Type.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-07-04 20:12:05 -0400
committerGitHub <noreply@github.com>2024-07-04 20:12:05 -0400
commit790b8428a26457e7ed9ea20485b9d3085011b989 (patch)
tree3d27f81e31d73af526e8a972504325fa1cb0d9e1 /src/codegen/c/Type.zig
parentde61540c2d049b0774dd9c5e14aa8f65ed1c25ed (diff)
parentcda6f552d5d4a996df69981dac7c9d9b3c066537 (diff)
downloadzig-790b8428a26457e7ed9ea20485b9d3085011b989.tar.gz
zig-790b8428a26457e7ed9ea20485b9d3085011b989.zip
Merge pull request #20494 from mlugg/the-great-decl-split
refactors ad infinitum
Diffstat (limited to 'src/codegen/c/Type.zig')
-rw-r--r--src/codegen/c/Type.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c/Type.zig b/src/codegen/c/Type.zig
index e316d7a154..0a0d84f061 100644
--- a/src/codegen/c/Type.zig
+++ b/src/codegen/c/Type.zig
@@ -2583,6 +2583,6 @@ const assert = std.debug.assert;
const CType = @This();
const Module = @import("../../Package/Module.zig");
const std = @import("std");
-const Type = @import("../../type.zig").Type;
+const Type = @import("../../Type.zig");
const Zcu = @import("../../Zcu.zig");
const DeclIndex = @import("../../InternPool.zig").DeclIndex;