Skip to content

Commit

Permalink
Cleaned up the use statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-nitro committed Jan 10, 2025
1 parent 340b804 commit 3a12f12
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions sdk/stable-layout/src/stable_vec.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
//! `Vec`, with a stable memory layout
use std::ops::{Deref, DerefMut};
use std::{marker::PhantomData, mem::ManuallyDrop};
use std::{
marker::PhantomData,
mem::ManuallyDrop,
ops::{Deref, DerefMut},
};

/// `Vec`, with a stable memory layout
///
Expand Down

0 comments on commit 3a12f12

Please sign in to comment.