We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa75194 commit 392348fCopy full SHA for 392348f
src/libarena/lib.rs
@@ -37,7 +37,6 @@ use std::mem;
37
use std::ptr::read;
38
use std::cmp;
39
use std::num;
40
-use std::kinds::marker;
41
use std::rc::Rc;
42
use std::rt::global_heap;
43
use std::intrinsics::{TyDesc, get_tydesc};
@@ -90,7 +89,6 @@ pub struct Arena {
90
89
priv head: Chunk,
91
priv pod_head: Chunk,
92
priv chunks: RefCell<@List<Chunk>>,
93
- priv no_freeze: marker::NoFreeze,
94
}
95
96
impl Arena {
@@ -103,7 +101,6 @@ impl Arena {
103
101
head: chunk(initial_size, false),
104
102
pod_head: chunk(initial_size, true),
105
chunks: RefCell::new(@Nil),
106
- no_freeze: marker::NoFreeze,
107
108
109
0 commit comments