From: <sv...@op...> - 2024-12-19 09:13:51
|
Author: manx Date: Thu Dec 19 10:13:39 2024 New Revision: 22574 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22574 Log: [Fix] Remove superfluous semicolon. Modified: trunk/OpenMPT/soundlib/InstrumentExtensions.cpp Modified: trunk/OpenMPT/soundlib/InstrumentExtensions.cpp ============================================================================== --- trunk/OpenMPT/soundlib/InstrumentExtensions.cpp Thu Dec 19 10:11:38 2024 (r22573) +++ trunk/OpenMPT/soundlib/InstrumentExtensions.cpp Thu Dec 19 10:13:39 2024 (r22574) @@ -182,7 +182,7 @@ struct PropertyWriterEnvelopeBase { - PropertyWriterEnvelopeBase(uint32 nodes, EnvelopeType type) : nodes{nodes}, type{type} {}; + PropertyWriterEnvelopeBase(uint32 nodes, EnvelopeType type) : nodes{nodes}, type{type} {} static bool IsPropertyNeeded(const ModInstrument&) noexcept { return true; |