try just removing all PLATFORM_WINDOWS conditionals in ipmidi code to see if it will...
[ardour.git] / libs / surfaces / mackie / midi_byte_array.h
index 372e48ab90b59764c5afbf9ef235016b46c6a673..3d3bcecd28d1688f09e487b180992c6dda7d8277 100644 (file)
@@ -49,14 +49,14 @@ class MidiByteArray : public std::vector<MIDI::byte>
 {
 public:
        MidiByteArray() : std::vector<MIDI::byte>() {}
-       
+
        MidiByteArray( size_t count, MIDI::byte array[] );
 
        /**
                Accepts a preceding count, and then a list of bytes
        */
        MidiByteArray( size_t count, MIDI::byte first, ... );
-       
+
        /// copy the given number of bytes from the given array
        void copy( size_t count, MIDI::byte arr[] );
 };