aboutsummaryrefslogtreecommitdiff
path: root/tools/process_headers.zig
diff options
context:
space:
mode:
Diffstat (limited to 'tools/process_headers.zig')
-rw-r--r--tools/process_headers.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/process_headers.zig b/tools/process_headers.zig
index 39fbe08a4a..84126635dc 100644
--- a/tools/process_headers.zig
+++ b/tools/process_headers.zig
@@ -267,8 +267,9 @@ const DestTarget = struct {
(@enumToInt(a.abi) *% @as(u32, 4082223418));
}
- pub fn eql(self: @This(), a: DestTarget, b: DestTarget) bool {
+ pub fn eql(self: @This(), a: DestTarget, b: DestTarget, b_index: usize) bool {
_ = self;
+ _ = b_index;
return a.arch.eql(b.arch) and
a.os == b.os and
a.abi == b.abi;