diff options
Diffstat (limited to 'library')
| -rw-r--r-- | library/src/compute/calc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/compute/calc.rs b/library/src/compute/calc.rs index 62c529de..3875e3c3 100644 --- a/library/src/compute/calc.rs +++ b/library/src/compute/calc.rs @@ -541,7 +541,7 @@ pub fn gcd( /// The second integer. b: i64, ) -> Value { - Value::Int(calculate_gcd(a, b).into()) + Value::Int(calculate_gcd(a, b)) } /// Calculates the greatest common divisor of two integers |
