We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1994450 commit bba7064Copy full SHA for bba7064
CHANGELOG.md
@@ -18,6 +18,10 @@ state is to list breaking changes.
18
that the remote controls exposed through `ClapPlugin::remote_controls()` now
19
use the non-draft extension.
20
21
+### Fixed
22
+
23
+- Fixed a warning about future name clashes when compiling `nih_plug`.
24
25
## [2024-12-23]
26
27
### Added
src/params/persist.rs
@@ -38,7 +38,7 @@ macro_rules! impl_persistent_arc {
38
T: serde::Serialize + serde::Deserialize<'a> + Send + Sync,
39
{
40
fn set(&self, new_value: T) {
41
- self.as_ref().set(new_value);
+ PersistentField::set(self.as_ref(), new_value);
42
}
43
fn map<F, R>(&self, f: F) -> R
44
where
0 commit comments