예제 #1
0
파일: logconv.cpp 프로젝트: AdiKo/avmplus
    bool operator<(const DebugInfo &other) const
    {
        int64_t pcPad = pc() - other.pc();

        if (pcPad)
            return pcPad < 0;

        if (tag() == 'file' && other.tag() != 'file'
            )
            return true;

        return false;
    }