From 39b4122dddb1dafccf2d48ad78065f932784e35e Mon Sep 17 00:00:00 2001 From: krishvishal Date: Wed, 29 Jan 2025 15:19:05 +0530 Subject: [PATCH] chore: cargo fmt --- core/translate/expr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/translate/expr.rs b/core/translate/expr.rs index 553fe9e03..319a15110 100644 --- a/core/translate/expr.rs +++ b/core/translate/expr.rs @@ -1773,7 +1773,7 @@ pub fn translate_expr( } else { 1 }; - + // Special case: if we're negating "9223372036854775808", this is exactly MIN_INT64 // If we don't do this -1 * 9223372036854775808 will overflow and parse will fail and trigger conversion to Real. if multiplier == -1 && numeric_value == "9223372036854775808" {