Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 0fa7d9d2d24c60518f0f010a30e733443dcc06a4
  • master par défaut protégée
  • tichadou2015-master-patch-52256
3 résultats

useless.py

Blame
  • Line.cc 279 o
    #include "Line.hh"
    
    using namespace Vivy::Ass;
    
    Line::Line(const QString & /*unused*/)
    {
    }
    
    void
    Line::setStart(quint64 s) noexcept
    {
        start = s;
        if (s > end)
            end = s;
    }
    
    void
    Line::setEnd(quint64 s) noexcept
    {
        end = s;
        if (start > s)
            start = s;
    }