aboutsummaryrefslogtreecommitdiff
path: root/core/math/fixed
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-06-14 11:43:35 +0100
committergingerBill <bill@gingerbill.org>2021-06-14 11:43:35 +0100
commit3e7aabe6d83797f7451300a5c8e6fb4a5c1804d2 (patch)
tree1d478a40ae1ac927846700c1d130ab4ce639607e /core/math/fixed
parentd4df325e0a2cfe1d6de90667099d9ac43e269029 (diff)
Change uses for parapoly records to use `$` always
Diffstat (limited to 'core/math/fixed')
-rw-r--r--core/math/fixed/fixed.odin2
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,