From a8d5d855c47b4f3cb1ac2bc20f0c34906aa4ea31 Mon Sep 17 00:00:00 2001 From: Alex Saveau Date: Thu, 21 Nov 2024 19:43:42 -0500 Subject: [PATCH] Remove static bound from DecInt --- src/path/dec_int.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/dec_int.rs b/src/path/dec_int.rs index 63b12229b..944c5212e 100644 --- a/src/path/dec_int.rs +++ b/src/path/dec_int.rs @@ -45,7 +45,7 @@ const _: () = assert!(u64::MAX_STR_LEN == i64::MAX_STR_LEN); impl DecInt { /// Construct a new path component from an integer. #[inline] - pub fn new(i: Int) -> Self { + pub fn new(i: Int) -> Self { let mut buf = [MaybeUninit::uninit(); 21]; let mut str_buf = Buffer::new();