NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / appleutility / CAAudioChannelLayout.cpp
index 585ff44fb7e7372024ef03679d3c854ae7f7acf7..5ca0b76ca064fb9817951e3f02a30f2fbe00ef83 100644 (file)
@@ -90,10 +90,10 @@ bool        operator== (const AudioChannelLayout &x, const AudioChannelLayout &y)
        // (this may be too strict a comparison if all you care about are matching layout tags)
        UInt32 theSize1 = CAAudioChannelLayout::CalculateByteSize(x.mNumberChannelDescriptions);
        UInt32 theSize2 = CAAudioChannelLayout::CalculateByteSize(y.mNumberChannelDescriptions);
-       
+
        if (theSize1 != theSize2)
                return false;
-               
+
        return !memcmp (&x, &y, theSize1);
 }
 
@@ -115,7 +115,7 @@ UInt32      CAAudioChannelLayout::NumberChannels (const AudioChannelLayout& inLayout)
 {
        if (inLayout.mChannelLayoutTag == kAudioChannelLayoutTag_UseChannelDescriptions)
                return inLayout.mNumberChannelDescriptions;
-       
+
        if (inLayout.mChannelLayoutTag == kAudioChannelLayoutTag_UseChannelBitmap)
                return CountOnes (inLayout.mChannelBitmap);