From eed41d86f35cae9c0b0ceceabc8c281dc34cd3fd Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Fri, 20 Aug 2021 16:05:41 +0200 Subject: [PATCH] Remove the const qualifier on ParameterEnumerationValue --- distrho/DistrhoPlugin.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp index dff23dcb..b77d53d0 100644 --- a/distrho/DistrhoPlugin.hpp +++ b/distrho/DistrhoPlugin.hpp @@ -405,7 +405,7 @@ struct ParameterEnumerationValues { Array of @ParameterEnumerationValue items.@n This pointer must be null or have been allocated on the heap with `new ParameterEnumerationValue[count]`. */ - const ParameterEnumerationValue* values; + ParameterEnumerationValue* values; /** Default constructor, for zero enumeration values.