diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2023-12-31 04:58:00 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-01-01 13:38:30 -0800 |
| commit | 3f2a65594e1d3c0a4f4943a4ea522e8405db81e0 (patch) | |
| tree | d93d69c0a60cf7d8c695f9d434b114c57005257f /src/Package/Module.zig | |
| parent | 4129996211edd30b25c23454520fd78b2a70394b (diff) | |
| download | zig-3f2a65594e1d3c0a4f4943a4ea522e8405db81e0.tar.gz zig-3f2a65594e1d3c0a4f4943a4ea522e8405db81e0.zip | |
Compilation: cleanup hashmap usage
Diffstat (limited to 'src/Package/Module.zig')
| -rw-r--r-- | src/Package/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Package/Module.zig b/src/Package/Module.zig index 7e6b518892..0c8d40bffa 100644 --- a/src/Package/Module.zig +++ b/src/Package/Module.zig @@ -14,7 +14,7 @@ fully_qualified_name: []const u8, /// responsible for detecting these names and using the correct package. deps: Deps = .{}, -pub const Deps = std.StringHashMapUnmanaged(*Module); +pub const Deps = std.StringArrayHashMapUnmanaged(*Module); pub const Tree = struct { /// Each `Package` exposes a `Module` with build.zig as its root source file. |
