No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / subrip_decoder.cc
index fecbbc5584cc96d6a943a9142fc49969d36b1909..c2bd4f3e0bd7dc8fa35167bc726447bca72958d2 100644 (file)
@@ -40,7 +40,7 @@ void
 SubRipDecoder::seek (ContentTime time, bool accurate)
 {
        SubtitleDecoder::seek (time, accurate);
-       
+
        _next = 0;
        while (_next < _subtitles.size() && ContentTime::from_seconds (_subtitles[_next].from.all_as_seconds ()) < time) {
                ++_next;
@@ -55,7 +55,7 @@ SubRipDecoder::pass ()
        }
 
        /* XXX: we are ignoring positioning specified in the file */
-       
+
        list<dcp::SubtitleString> out;
        for (list<sub::Line>::const_iterator i = _subtitles[_next].lines.begin(); i != _subtitles[_next].lines.end(); ++i) {
                for (list<sub::Block>::const_iterator j = i->blocks.begin(); j != i->blocks.end(); ++j) {