use super::*;
pub type Allocator = GenericAllocator<Meta, RawNode, Arena>;
node!(
struct RawNode {
flags = Flags::empty();
{
type Link = Link;
type ValuePointer = AtomicValuePointer;
type Pointer = NodePointer;
fn set_version(&mut self, version: Version) {}
impl WithoutVersion for RawNode {}
node_pointer!(RawNode {{
fn version(&self) -> Version {
MIN_VERSION
}
}});
}
}
);