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