Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel committed Aug 7, 2023
1 parent 42ba214 commit c5c09f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fixed_size.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub trait FixedSize:
arrow_buffer::ArrowNativeType + ArrayType + Copy + Debug + Sized + sealed::Sealed + 'static
{
/// The fixed-size of this type in bytes.
const SIZE: usize = std::mem::size_of::<Self>();
const SIZE: usize = mem::size_of::<Self>();
}

impl FixedSize for i8 {}
Expand Down

0 comments on commit c5c09f0

Please sign in to comment.