1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-07 04:10:08 +00:00

Minor code clean-ups.

This commit is contained in:
Julian Storer 2010-09-02 13:31:47 +01:00
parent b161c0f437
commit cac473bb1e
8 changed files with 27 additions and 27 deletions

View file

@ -56,7 +56,7 @@ MidiBuffer& MidiBuffer::operator= (const MidiBuffer& other) throw()
return *this;
}
void MidiBuffer::swapWith (MidiBuffer& other)
void MidiBuffer::swapWith (MidiBuffer& other) throw()
{
data.swapWith (other.data);
swapVariables <int> (bytesUsed, other.bytesUsed);