Skip to content

Commit 392348f

Browse files
committed
arena: Remove Freeze / NoFreeze
1 parent aa75194 commit 392348f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/libarena/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ use std::mem;
3737
use std::ptr::read;
3838
use std::cmp;
3939
use std::num;
40-
use std::kinds::marker;
4140
use std::rc::Rc;
4241
use std::rt::global_heap;
4342
use std::intrinsics::{TyDesc, get_tydesc};
@@ -90,7 +89,6 @@ pub struct Arena {
9089
priv head: Chunk,
9190
priv pod_head: Chunk,
9291
priv chunks: RefCell<@List<Chunk>>,
93-
priv no_freeze: marker::NoFreeze,
9492
}
9593

9694
impl Arena {
@@ -103,7 +101,6 @@ impl Arena {
103101
head: chunk(initial_size, false),
104102
pod_head: chunk(initial_size, true),
105103
chunks: RefCell::new(@Nil),
106-
no_freeze: marker::NoFreeze,
107104
}
108105
}
109106
}

0 commit comments

Comments
 (0)