globally remove all trailing whitespace from .cpp and .hpp files missed by previous...
[ardour.git] / libs / qm-dsp / dsp / segmentation / Segmenter.cpp
index 538eaacc78d0f2f51dbeb00297a461b83a9c2148..120a6617f53b64d19fccb8817a81a069bfbde14a 100644 (file)
@@ -23,7 +23,7 @@ ostream& operator<<(ostream& os, const Segmentation& s)
        for (int i = 0; i < s.segments.size(); i++)
        {
                Segment seg = s.segments[i];
-               os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate) 
+               os << std::fixed << seg.type << ':' << '\t' << std::setprecision(6) << seg.start / static_cast<double>(s.samplerate)
                        << '\t' << std::setprecision(6) << seg.end / static_cast<double>(s.samplerate) << "\n";
        }