aboutsummaryrefslogtreecommitdiff
path: root/src/macros/loom.rs
blob: fa2653ce7d61bf97c90bee1983dd1e1e7be7cdd2 (plain)
1
2
3
4
5
6
7
8
macro_rules! if_loom {
    ($($t:tt)*) => {{
        #[cfg(loom)]
        {
            $($t)*
        }
    }}
}