From 199e836f8000af2080b3056376c602bbeaf5f606 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Wed, 1 Mar 2023 19:11:35 +0100 Subject: [PATCH] Remove unnecessary must_use attribute --- src/wrapper/vst3/view.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wrapper/vst3/view.rs b/src/wrapper/vst3/view.rs index e70bf943..472d1bc4 100644 --- a/src/wrapper/vst3/view.rs +++ b/src/wrapper/vst3/view.rs @@ -174,7 +174,6 @@ impl WrapperView

{ /// run on the host's UI thread. If not, then this will return an `Err` value containing the /// task so it can be run elsewhere. #[cfg(not(target_os = "linux"))] - #[must_use] pub fn do_maybe_in_run_loop(&self, task: Task

) -> Result<(), Task

> { Err(task) }