Browse Source

Fix a warning

Signed-off-by: falkTX <falktx@falktx.com>
pull/421/head
falkTX 2 years ago
parent
commit
354be5a665
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      distrho/DistrhoDetails.hpp

+ 2
- 2
distrho/DistrhoDetails.hpp View File

@@ -517,8 +517,8 @@ struct ParameterEnumerationValues {

constexpr ParameterEnumerationValues() noexcept
: count(0),
ptr(nullptr),
deleteLater(false) {}
deleteLater(false),
ptr(nullptr) {}

constexpr ParameterEnumerationValues(uint32_t c, const ParameterEnumerationValue* v) noexcept
: count(c),


Loading…
Cancel
Save