globally remove all trailing whitespace from ardour code base.
[ardour.git] / libs / backends / wavesaudio / waves_audioport.cc
index 4918025bea9b923dc73b565d312aff88ea7c2483..b8dac7313773041a953594a19e1b5445fc1fd78e 100644 (file)
@@ -24,7 +24,7 @@
 using namespace ARDOUR;
 
 WavesAudioPort::WavesAudioPort (const std::string& port_name, PortFlags flags)
-    : WavesDataPort (port_name, flags)    
+    : WavesDataPort (port_name, flags)
 {
        aligned_malloc ((void**)&_buffer, MAX_BUFFER_SIZE_BYTES, 32 /*32 byte alignment*/);
     memset (_buffer, 0, MAX_BUFFER_SIZE_BYTES);
@@ -39,9 +39,9 @@ WavesAudioPort::~WavesAudioPort ()
 void* WavesAudioPort::get_buffer (pframes_t nframes)
 {
     if (is_input ()) {
-        
+
         std::vector<WavesDataPort*>::const_iterator it = get_connections ().begin ();
-        
+
         if (it != get_connections ().end ()) {
             /* In fact, the static casting to (const WavesAudioPort*) is not that safe.
              * However, mixing the buffers is assumed in the time critical conditions.
@@ -53,7 +53,7 @@ void* WavesAudioPort::get_buffer (pframes_t nframes)
              // use optimized function to fill the buffer intialy
              ARDOUR::copy_vector (_buffer, ((const WavesAudioPort*)*it)->const_buffer (), nframes);
              ++it;
-            
+
              // mix the rest
              for (; it != get_connections ().end (); ++it) {
                  Sample* tgt = buffer ();