Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sdroege/gst-plugin-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-09-18 12:31:39 +0300
committerSebastian Dröge <slomo@coaxion.net>2021-09-18 13:08:40 +0300
commita03b52a97560017a45f2b5aa85bcac1cbf8b35ff (patch)
tree84ba21f203176f5ce4f225759ebbc7d6ffaaf2c4 /audio/csound
parentea2a313d01faca02e0fb10f7385dd623c3af9704 (diff)
csound: Fix nightly compiler warning in test
warning: trailing semicolon in macro used in expression position --> audio/csound/tests/csound_filter.rs:52:10 | 52 | ); | ^ ... 403 | &CSD!(ksmps, ichannels, ochannels, "ain, ain2 ins", "out ain"), | ------------------------------------------------------------- in this macro invocation | = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! = note: for more information, see issue #79813 <https://github.com/rust-lang/rust/issues/79813> = note: this warning originates in the macro `CSD` (in Nightly builds, run with -Z macro-backtrace for more info)
Diffstat (limited to 'audio/csound')
-rw-r--r--audio/csound/tests/csound_filter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/csound/tests/csound_filter.rs b/audio/csound/tests/csound_filter.rs
index 4c94cdb7..702d47e5 100644
--- a/audio/csound/tests/csound_filter.rs
+++ b/audio/csound/tests/csound_filter.rs
@@ -49,7 +49,7 @@ macro_rules! CSD {
</CsScore>
</CsoundSynthesizer>",
$ksmps, $ichannels, $ochannels, $ins, $out
- );
+ )
};
}