From 8329f59edc04dfc6c14a2375873c630da99f97f5 Mon Sep 17 00:00:00 2001 From: Mihail Moskov <28909106+corleypc@users.noreply.github.com> Date: Wed, 12 Aug 2026 19:50:28 +0300 Subject: [PATCH] comma in where to satisfy the vet cerberus :) --- base/runtime/internal_i128.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/runtime/internal_i128.odin b/base/runtime/internal_i128.odin index df5066843..39f153849 100644 --- a/base/runtime/internal_i128.odin +++ b/base/runtime/internal_i128.odin @@ -133,7 +133,7 @@ fixuint :: proc "contextless" ($U: typeid, a: f64) -> U where intrinsics.type_is // decompose the f64 into significand and exponent, shift the significand into place, // saturate out of range values @(private="file") -fixint :: proc "contextless" ($T: typeid, a: f64) -> T where intrinsics.type_is_integer(T) && !intrinsics.type_is_unsigned(T) { +fixint :: proc "contextless" ($T: typeid, a: f64) -> T where intrinsics.type_is_integer(T), !intrinsics.type_is_unsigned(T) { BITS :: 8 * size_of(T) SIGNIFICAND_BITS :: 52 EXPONENT_BIAS :: 1023