diff options
Diffstat (limited to 'core/math')
| -rw-r--r-- | core/math/fixed/fixed.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/fixed/fixed.odin b/core/math/fixed/fixed.odin index 115df177a..df6659ff5 100644 --- a/core/math/fixed/fixed.odin +++ b/core/math/fixed/fixed.odin @@ -6,7 +6,7 @@ import "core:strconv" import "intrinsics" _ :: intrinsics; -Fixed :: struct($Backing: typeid, Fraction_Width: uint) +Fixed :: struct($Backing: typeid, $Fraction_Width: uint) where intrinsics.type_is_integer(Backing), 0 <= Fraction_Width, |