1
0
Fork 0

Silence unused event loop warning without VST3

This commit is contained in:
Robbert van der Helm 2023-02-19 13:15:09 +01:00
parent 51865a6415
commit 5ddcc3bc7d

View file

@ -13,10 +13,13 @@ mod windows;
pub(crate) use self::background_thread::BackgroundThread;
#[allow(unused_imports)]
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
pub(crate) use self::linux::LinuxEventLoop as OsEventLoop;
#[allow(unused_imports)]
#[cfg(target_os = "macos")]
pub(crate) use self::macos::MacOSEventLoop as OsEventLoop;
#[allow(unused_imports)]
#[cfg(target_os = "windows")]
pub(crate) use self::windows::WindowsEventLoop as OsEventLoop;