Skip to content

Commit 2f08107

Browse files
Fixed a new clippy warning (#661)
Co-authored-by: Victor Koenders <[email protected]>
1 parent ea15534 commit 2f08107

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/varint/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ pub use self::{
2222
},
2323
};
2424

25-
pub(self) const SINGLE_BYTE_MAX: u8 = 250;
26-
pub(self) const U16_BYTE: u8 = 251;
27-
pub(self) const U32_BYTE: u8 = 252;
28-
pub(self) const U64_BYTE: u8 = 253;
29-
pub(self) const U128_BYTE: u8 = 254;
25+
const SINGLE_BYTE_MAX: u8 = 250;
26+
const U16_BYTE: u8 = 251;
27+
const U32_BYTE: u8 = 252;
28+
const U64_BYTE: u8 = 253;
29+
const U128_BYTE: u8 = 254;

0 commit comments

Comments
 (0)