Skip to content

Commit 398e89f

Browse files
committed
missing comptime
1 parent 609f0bb commit 398e89f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/static_array_map.zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub fn defaultEql(comptime expected: anytype, actual: anytype) bool {
5353
}
5454

5555
fn ignoreCaseEql(comptime expected: anytype, actual: anytype) bool {
56-
const lower_expected = toLowerSimd(expected);
56+
const lower_expected = comptime toLowerSimd(expected);
5757

5858
// TODO: x86_64 self hosted backend hasn't implemented genBinOp for cmp_gte
5959
const lower_actual = blk: {

0 commit comments

Comments
 (0)