Browse Source

Also remove const in the ctor of ParameterEnumerationValues

pull/309/head
Jean Pierre Cimalando 4 years ago
parent
commit
ff0344c681
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/DistrhoPlugin.hpp

+ 1
- 1
distrho/DistrhoPlugin.hpp View File

@@ -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) {}


Loading…
Cancel
Save