GDB doesnt like my typedef

Posted by yan bellavance on Stack Overflow See other posts from Stack Overflow or by yan bellavance
Published on 2010-04-22T00:18:43Z Indexed on 2010/04/22 0:23 UTC
Read the original article Hit count: 549

Filed under:
|
|
|

It seems that the following is to deep for the debugger in Qt even though the program uses it without problem

typedef QMap <int, QStringList> day2FileNameType;
typedef QMap <int, day2FileNameType> month2day2FileNameType;
typedef QMap <int, month2day2FileNameType> year2month2day2FileNameType;

year2month2day2FileNameType y2m2d2f;

now the first 2 typeDefs work okay with the debugger but the third one retrieving data for watch view (over 100 pending request)

Is it wrong for me to try and use such a typedef as year2month2day2FileNameType?

© Stack Overflow or respective owner

Related posts about qt

Related posts about gdb