Silence unused event loop warning without VST3
This commit is contained in:
parent
51865a6415
commit
5ddcc3bc7d
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue