fix: cfg limit tracing_buffer to windows only

This commit is contained in:
Ryan Walters
2025-09-09 16:27:35 -05:00
parent f3a6b72931
commit 2a2cca675a

View File

@@ -3,10 +3,12 @@
#[cfg(not(target_os = "emscripten"))]
mod desktop;
#[cfg(not(target_os = "emscripten"))]
pub mod tracing_buffer;
#[cfg(not(target_os = "emscripten"))]
pub use desktop::*;
/// Tracing buffer is only used on Windows.
#[cfg(target_os = "windows")]
pub mod tracing_buffer;
#[cfg(target_os = "emscripten")]
pub use emscripten::*;
#[cfg(target_os = "emscripten")]