1 2 3 4 5 6 7 8 9 10 11 12 13
#[cfg(any(feature = "cl", feature = "cl_native"))] macro_rules! ursa_cl { ($ident:ident) => { $crate::ursa::cl::$ident }; } #[cfg(not(any(feature = "cl", feature = "cl_native")))] macro_rules! ursa_cl { ($ident:path) => { serde_json::Value }; }