We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 609f0bb commit 398e89fCopy full SHA for 398e89f
lib/std/static_array_map.zig
@@ -53,7 +53,7 @@ pub fn defaultEql(comptime expected: anytype, actual: anytype) bool {
53
}
54
55
fn ignoreCaseEql(comptime expected: anytype, actual: anytype) bool {
56
- const lower_expected = toLowerSimd(expected);
+ const lower_expected = comptime toLowerSimd(expected);
57
58
// TODO: x86_64 self hosted backend hasn't implemented genBinOp for cmp_gte
59
const lower_actual = blk: {
0 commit comments