From 39983d7ff524a3e1e25dbd6904e28a6dd11120e6 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 31 Jan 2022 21:12:37 -0700 Subject: stage2: update to new ArrayHashMap API --- src/codegen/spirv/type.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/codegen/spirv/type.zig') diff --git a/src/codegen/spirv/type.zig b/src/codegen/spirv/type.zig index 3eef2d8040..d9504f4d23 100644 --- a/src/codegen/spirv/type.zig +++ b/src/codegen/spirv/type.zig @@ -157,8 +157,9 @@ pub const Type = extern union { _ = self; return @truncate(u32, t.hashShallow()); } - pub fn eql(self: @This(), a: Type, b: Type) bool { + pub fn eql(self: @This(), a: Type, b: Type, b_index: usize) bool { _ = self; + _ = b_index; return a.eqlShallow(b); } }; -- cgit v1.2.3