From af951bc665f99868042036528136f85096794644 Mon Sep 17 00:00:00 2001 From: Imbris Date: Mon, 26 Apr 2021 20:38:35 -0400 Subject: [PATCH] Fix ProfSpan constructor being private --- common/base/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/base/src/lib.rs b/common/base/src/lib.rs index eed7df08b6..3325612858 100644 --- a/common/base/src/lib.rs +++ b/common/base/src/lib.rs @@ -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;