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:
parent
320c5b66c7
commit
4eec61469b
1 changed files with 9 additions and 2 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue