diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-05 23:32:22 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-05 23:32:22 -0800 |
| commit | 648b492ef1d962cabd7d2f017ef47aef73c0c3aa (patch) | |
| tree | 844d80b99d08bc7f9c3b5ff8902fbb15a587b6cc /src/type.zig | |
| parent | 5cf138e512a06dca65b737f27e4493cdfb3b7ddb (diff) | |
| parent | dd54804d8623a6d022dcac63359636b990b926f9 (diff) | |
| download | zig-648b492ef1d962cabd7d2f017ef47aef73c0c3aa.tar.gz zig-648b492ef1d962cabd7d2f017ef47aef73c0c3aa.zip | |
Merge pull request #18831 from ziglang/flatten-value
flatten value.zig into Value.zig (refactor only)
Diffstat (limited to 'src/type.zig')
| -rw-r--r-- | src/type.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/type.zig b/src/type.zig index 9ca2822204..4c7452ed08 100644 --- a/src/type.zig +++ b/src/type.zig @@ -1,6 +1,6 @@ const std = @import("std"); const builtin = @import("builtin"); -const Value = @import("value.zig").Value; +const Value = @import("Value.zig"); const assert = std.debug.assert; const Target = std.Target; const Module = @import("Module.zig"); |
