diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-11-06 13:51:33 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-11-06 13:51:33 -0700 |
| commit | 008dd90f1fb55f8782d7b435cf78629e7cea34e0 (patch) | |
| tree | e4810b5c50218eb5f2998b30527f8e931c33b40f /tools/process_headers.zig | |
| parent | 030f00391af6a46697db8031d5bd58e78eca2454 (diff) | |
| download | zig-008dd90f1fb55f8782d7b435cf78629e7cea34e0.tar.gz zig-008dd90f1fb55f8782d7b435cf78629e7cea34e0.zip | |
update process_headers tool
Diffstat (limited to 'tools/process_headers.zig')
| -rw-r--r-- | tools/process_headers.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/process_headers.zig b/tools/process_headers.zig index b5bce2ef7f..d3486c0693 100644 --- a/tools/process_headers.zig +++ b/tools/process_headers.zig @@ -249,7 +249,7 @@ const Contents = struct { }; const HashToContents = std.StringHashMap(Contents); -const TargetToHash = std.HashMap(DestTarget, []const u8, DestTarget.hash, DestTarget.eql, true); +const TargetToHash = std.ArrayHashMap(DestTarget, []const u8, DestTarget.hash, DestTarget.eql, true); const PathTable = std.StringHashMap(*TargetToHash); const LibCVendor = enum { |
