aboutsummaryrefslogtreecommitdiff
path: root/src/value.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.zig')
-rw-r--r--src/value.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/value.zig b/src/value.zig
index 47f69b2099..71fb8c4a0e 100644
--- a/src/value.zig
+++ b/src/value.zig
@@ -2555,6 +2555,9 @@ pub const Value = extern union {
.lazy_size,
=> return hashInt(ptr_val, hasher, target),
+ // The value is runtime-known and shouldn't affect the hash.
+ .runtime_int => {},
+
else => unreachable,
}
}