Skip to content

Commit c7b388a

Browse files
committed
Bump rustsynth-derive version to 0.7.1 and fix ManuallyDrop usage in filter processing
1 parent 6c67c79 commit c7b388a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rustsynth-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustsynth-derive"
33
description = "Procedural macro helpers for rustsynth"
4-
version = "0.7.0"
4+
version = "0.7.1"
55
edition.workspace = true
66
license.workspace = true
77
authors.workspace = true

rustsynth-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ fn generate_vs_filter(
339339

340340
match filter.process_frame(n, frame_data_array, &frame_ctx_wrapper, core_ref) {
341341
Ok(output_frame) => {
342-
let output_frame = MannuallyDrop::new(output_frame);
342+
let output_frame = std::mem::ManuallyDrop::new(output_frame);
343343
output_frame.as_ptr()
344344
},
345345
Err(error_msg) => {

0 commit comments

Comments
 (0)