DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 354be5a66510d98a1826fca47d25889a3c09f72b
parent cc053280afc59f4b9391b8caf2c4de6cd6c88b7c
Author: falkTX <falktx@falktx.com>
Date:   Mon, 27 Mar 2023 15:35:57 +0200

Fix a warning

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/DistrhoDetails.hpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/distrho/DistrhoDetails.hpp b/distrho/DistrhoDetails.hpp @@ -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),