No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / audio_analysis.cc
index 73422a9be9ad8a2f3a6039d7487c284ddfe4f8bf..7e1dc6e7884f619765c4a927bb31af85ddde9871 100644 (file)
@@ -65,7 +65,7 @@ AudioPoint::operator= (AudioPoint const & other)
        if (this == &other) {
                return *this;
        }
-       
+
        for (int i = 0; i < COUNT; ++i) {
                _data[i] = other._data[i];
        }
@@ -79,7 +79,7 @@ AudioPoint::as_xml (xmlpp::Element* parent) const
        parent->add_child ("Peak")->add_child_text (raw_convert<string> (_data[PEAK]));
        parent->add_child ("RMS")->add_child_text (raw_convert<string> (_data[RMS]));
 }
-       
+
 AudioAnalysis::AudioAnalysis (int channels)
 {
        _data.resize (channels);