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

Added a compiler error if your compiler is too old and removed numerous code checks for old compilers which are now deprecated

This commit is contained in:
hogliux 2017-02-01 15:53:35 +00:00
parent 871236d4cd
commit 9f3fb1c0a6
80 changed files with 121 additions and 263 deletions

View file

@ -285,7 +285,6 @@ MidiMessage& MidiMessage::operator= (const MidiMessage& other)
return *this;
}
#if JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS
MidiMessage::MidiMessage (MidiMessage&& other) noexcept
: timeStamp (other.timeStamp), size (other.size)
{
@ -301,7 +300,6 @@ MidiMessage& MidiMessage::operator= (MidiMessage&& other) noexcept
other.size = 0;
return *this;
}
#endif
MidiMessage::~MidiMessage() noexcept
{