From 4c54716cc224834fb52620cd7abf651bc4963ff2 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 24 May 2022 14:26:13 +0200 Subject: [PATCH] Remove unnecessary pub specifier --- src/wrapper/clap/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper/clap/wrapper.rs b/src/wrapper/clap/wrapper.rs index 8bcecd33..dd8bd008 100644 --- a/src/wrapper/clap/wrapper.rs +++ b/src/wrapper/clap/wrapper.rs @@ -148,7 +148,7 @@ pub struct Wrapper { /// apointer to pointers, so this needs to be preallocated in the setup call and kept around /// between process calls. This buffer owns the vector, because otherwise it would need to store /// a mutable reference to the data contained in this mutex. - pub output_buffer: AtomicRefCell>, + output_buffer: AtomicRefCell>, /// The plugin is able to restore state through a method on the `GuiContext`. To avoid changing /// parameters mid-processing and running into garbled data if the host also tries to load state /// at the same time the restoring happens at the end of each processing call. If this zero