From 12c940cdf691b40b9a7b879f85b332d3ef199f50 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Wed, 11 Mar 2020 23:47:55 -0500 Subject: [PATCH] Suppress deprecation warning --- src/effects/lv2/LV2Effect.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/effects/lv2/LV2Effect.h b/src/effects/lv2/LV2Effect.h index 2ca6ec7f9..70b53a7f0 100755 --- a/src/effects/lv2/LV2Effect.h +++ b/src/effects/lv2/LV2Effect.h @@ -48,6 +48,10 @@ class wxArrayString; #include +// We use deprecated LV2 interfaces to remain compatible with older +// plug-ins, so disable warnings +LV2_DISABLE_DEPRECATION_WARNINGS + class wxSlider; class wxTextCtrl; class NumericTextCtrl;