Fix issue with conflicting mappings

This commit is contained in:
Ivan Duran
2024-11-10 14:27:29 +03:00
parent 1b0cf70d77
commit 6c2ddb7c9c

View File

@ -828,6 +828,7 @@ pub const Action = union(enum) {
// Handle SplitParameter specifically // Handle SplitParameter specifically
Action.SplitParameter => { Action.SplitParameter => {
std.hash.autoHash(hasher, field[0]);
const bits = @as(u32, @bitCast(field[1])); const bits = @as(u32, @bitCast(field[1]));
std.hash.autoHash(hasher, bits); std.hash.autoHash(hasher, bits);
}, },