From ff0344c68184e2a48bed7f9582d257134f2bd522 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Fri, 20 Aug 2021 16:09:30 +0200 Subject: [PATCH] Also remove const in the ctor of ParameterEnumerationValues --- distrho/DistrhoPlugin.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/DistrhoPlugin.hpp b/distrho/DistrhoPlugin.hpp index b77d53d0..b23298f1 100644 --- a/distrho/DistrhoPlugin.hpp +++ b/distrho/DistrhoPlugin.hpp @@ -419,7 +419,7 @@ struct ParameterEnumerationValues { Constructor using custom values.@n The pointer to @values must have been allocated on the heap with `new`. */ - ParameterEnumerationValues(uint32_t c, bool r, const ParameterEnumerationValue* v) noexcept + ParameterEnumerationValues(uint32_t c, bool r, ParameterEnumerationValue* v) noexcept : count(c), restrictedMode(r), values(v) {}