luaur_vm/macros/white_2_gray.rs
1use crate::macros::reset_2_bits::reset2bits;
2
3#[allow(non_snake_case)]
4#[macro_export]
5macro_rules! white2gray {
6 ($x:expr) => {
7 $crate::macros::reset_2_bits::reset2bits!(
8 (*$x).gch.marked,
9 $crate::macros::fixedbit::WHITE0BIT,
10 $crate::macros::fixedbit::WHITE1BIT
11 )
12 };
13}
14
15pub use white2gray;