File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ struct PropertyWriterReleaseNode
183183struct PropertyWriterEnvelopeBase
184184{
185185 PropertyWriterEnvelopeBase (uint32 nodes, EnvelopeType type) : nodes{nodes}, type{type} {};
186- static constexpr bool IsPropertyNeeded (const ModInstrument&) noexcept
186+ static bool IsPropertyNeeded (const ModInstrument&) noexcept
187187 {
188188 return true ;
189189 }
@@ -242,7 +242,7 @@ struct PropertyWriterEnvelopeValues : PropertyWriterEnvelopeBase
242242
243243struct PropertyWriterPitchTempoLock
244244{
245- static constexpr bool IsPropertyNeeded (const ModInstrument &ins) noexcept { return ModInstrument{}.pitchToTempoLock != ins.pitchToTempoLock ; }
245+ static bool IsPropertyNeeded (const ModInstrument &ins) noexcept { return ModInstrument{}.pitchToTempoLock != ins.pitchToTempoLock ; }
246246 static constexpr uint16 Size () noexcept { return sizeof (uint16le); }
247247 PropertyWriterPitchTempoLock (bool intPart) : m_intPart{intPart} {}
248248 void Write (std::ostream &file, const ModInstrument &ins)
You can’t perform that action at this time.
0 commit comments