From: <sv...@op...> - 2024-12-19 21:59:26
|
Author: sagamusix Date: Thu Dec 19 22:59:15 2024 New Revision: 22584 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22584 Log: [Fix] Remove constexpr ModInstrument constructor again for now. clang builds aren't happy. Modified: trunk/OpenMPT/soundlib/ModInstrument.h Modified: trunk/OpenMPT/soundlib/ModInstrument.h ============================================================================== --- trunk/OpenMPT/soundlib/ModInstrument.h Thu Dec 19 21:40:05 2024 (r22583) +++ trunk/OpenMPT/soundlib/ModInstrument.h Thu Dec 19 22:59:15 2024 (r22584) @@ -128,7 +128,7 @@ // WHEN adding new members here, ALSO update InstrumentExtensions.cpp // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - MPT_CONSTEXPR20_FUN explicit ModInstrument(SAMPLEINDEX sample = 0) + explicit ModInstrument(SAMPLEINDEX sample = 0) { AssignSample(sample); ResetNoteMap(); |