Skip to content

Commit 1892866

Browse files
committed
Make Hole struct private
1 parent af5e10b commit 1892866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hole.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl HoleList {
131131

132132
/// A block containing free memory. It points to the next hole and thus forms a linked list.
133133
#[cfg(not(test))]
134-
pub struct Hole {
134+
struct Hole {
135135
size: usize,
136136
next: Option<&'static mut Hole>,
137137
}

0 commit comments

Comments
 (0)