From 4305c73763732369a6a790ea578592ba2196468f Mon Sep 17 00:00:00 2001 From: Robin Leroy Date: Fri, 16 Dec 2022 09:55:13 +0100 Subject: [PATCH] appease clippy --- utils/fixed_decimal/src/compact.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/fixed_decimal/src/compact.rs b/utils/fixed_decimal/src/compact.rs index fbe9dd87ae8..d20f8e41fcc 100644 --- a/utils/fixed_decimal/src/compact.rs +++ b/utils/fixed_decimal/src/compact.rs @@ -80,7 +80,7 @@ impl writeable::Writeable for CompactDecimal { if self.exponent != 0 { result += self.exponent.writeable_length_hint() + 1; } - return result; + result } }