Fix ProfSpan constructor being private

This commit is contained in:
Imbris 2021-04-26 20:38:35 -04:00
parent d5f4a4443a
commit 7da6b5e59d

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;