diff --git a/vlib/math/fractions/fraction.v b/vlib/math/fractions/fraction.v index 2e0b7bda1f..69c8f6343a 100644 --- a/vlib/math/fractions/fraction.v +++ b/vlib/math/fractions/fraction.v @@ -15,9 +15,9 @@ import math.bits // 2. d cannot be set to zero. The factory function will panic. // 3. If provided d is negative, it will be made positive. n will change as well. struct Fraction { - n i64 - d i64 pub: + n i64 + d i64 is_reduced bool }