1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Remove default keywords from MidiMessageSequence to be compatible with VS 2013

This commit is contained in:
hogliux 2016-06-15 15:42:35 +01:00
parent 320c5b66c7
commit 4eec61469b

View file

@ -49,8 +49,15 @@ public:
MidiMessageSequence& operator= (const MidiMessageSequence&);
#if JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS
MidiMessageSequence (MidiMessageSequence&&) noexcept = default;
MidiMessageSequence& operator= (MidiMessageSequence&&) noexcept = default;
MidiMessageSequence (MidiMessageSequence&& other) noexcept
: list (std::move (other.list))
{}
MidiMessageSequence& operator= (MidiMessageSequence&& other) noexcept
{
list = std::move (other.list);
return *this;
}
#endif
/** Destructor. */