#[cfg(feature = "hyperreal-dispatch-trace")]
macro_rules! trace_dispatch {
($layer:expr, $operation:expr, $path:expr) => {
::hyperreal::dispatch_trace::record($layer, $operation, $path);
};
}
#[cfg(not(feature = "hyperreal-dispatch-trace"))]
macro_rules! trace_dispatch {
($layer:expr, $operation:expr, $path:expr) => {};
}
pub(crate) use trace_dispatch;