------- Comment #3 from rguenth at gcc dot gnu dot org  2010-06-16 09:30 -------
class CallTip {
    int tabSize;
    int DrawChunk(int &x);
    int NextTabPos(int x);
};
int CallTip::NextTabPos(int x) 
{
    if (tabSize > 0) {
        x -= 5;
        x = (x + tabSize) / tabSize;
    }
}
int CallTip::DrawChunk(int &x) 
{
    const int numEnds = 10;
    int ends[numEnds + 2];
    return NextTabPos(x);
}


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ebotcazou at gcc dot gnu dot
                   |                            |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44545

Reply via email to