Fix false positive warning in CLAP GUI parameters
This commit is contained in:
parent
246c319bbf
commit
c1ca97c78c
1 changed files with 2 additions and 1 deletions
|
@ -516,7 +516,8 @@ impl<P: ClapPlugin> Wrapper<P> {
|
||||||
Some(host_params) if !self.is_processing.load(Ordering::SeqCst) => {
|
Some(host_params) if !self.is_processing.load(Ordering::SeqCst) => {
|
||||||
unsafe { (host_params.request_flush)(&*self.host_callback) };
|
unsafe { (host_params.request_flush)(&*self.host_callback) };
|
||||||
}
|
}
|
||||||
_ => nih_debug_assert_failure!("The host does not support parameters? What?"),
|
Some(_) => (),
|
||||||
|
None => nih_debug_assert_failure!("The host does not support parameters? What?"),
|
||||||
}
|
}
|
||||||
|
|
||||||
result
|
result
|
||||||
|
|
Loading…
Add table
Reference in a new issue