NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / audiographer / audiographer / general / peak_reader.h
index dd5d65491c46824b6a889db90a4222a3b4fad4c3..8bf0faa79261cf783f48927973f0dedffa07ccc7 100644 (file)
@@ -15,10 +15,10 @@ class /*LIBAUDIOGRAPHER_API*/ PeakReader : public ListedSource<float>, public Si
   public:
        /// Constructor \n RT safe
        PeakReader() : peak (0.0) {}
-       
+
        /// Returns the highest absolute of the values found so far. \n RT safe
        float get_peak() { return peak; }
-       
+
        /// Resets the peak to 0 \n RT safe
        void  reset() { peak = 0.0; }
 
@@ -28,9 +28,9 @@ class /*LIBAUDIOGRAPHER_API*/ PeakReader : public ListedSource<float>, public Si
                peak = Routines::compute_peak (c.data(), c.frames(), peak);
                ListedSource<float>::output(c);
        }
-       
+
        using Sink<float>::process;
-       
+
   private:
        float peak;
 };