Silence clippy::type_complexity

Clippy now wants us to move any usage of the Fn* traits to a typedef.
Doing so will almost certainly not help readability.
This commit is contained in:
Robbert van der Helm
2022-07-01 15:50:23 +02:00
parent 0599780030
commit 32ad1212f1
3 changed files with 9 additions and 0 deletions

View File

@@ -2,6 +2,9 @@
//!
//! TODO: Proper usage example, for now check out the gain_gui example
// See the comment in the main `nih_plug` crate
#![allow(clippy::type_complexity)]
use baseview::gl::GlConfig;
use baseview::{Size, WindowHandle, WindowOpenOptions, WindowScalePolicy};
use crossbeam::atomic::AtomicCell;