summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/33151-bug_i_752.cpp
blob: da8fe9f580a1eba0487017bf7f38ce0848faf45e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int a()
{
    for(QStringList::const_iterator codesIt = _codes.constBegin(); codesIt != _codes.constEnd(); ++codesIt) {
        if(    // Current codes enough to compare:
            ( ( *codesIt ).size() <= strId ) ||
            // Character on this slot was not readable:
            ( ( *codesIt ).at( strId ) == m_wildcard ) ||
            // This character is matching:
            ( code.at( strId ) == ( *codesIt ).at( strId ) ) ) {
            // Ignore this slot:
            continue;
        }
    }
}