Fix ProfSpan constructor being private

This commit is contained in:
Imbris 2021-04-26 20:38:35 -04:00 committed by Avi Weinstock
parent ea6985e565
commit a7d0569bee

View File

@ -59,7 +59,7 @@ macro_rules! span {
}
#[cfg(feature = "tracy")]
pub struct ProfSpan(tracy_client::Span);
pub struct ProfSpan(pub tracy_client::Span);
#[cfg(not(feature = "tracy"))]
pub struct ProfSpan;