QList<foo>displayed correctly in the debugger, however, the nested type structure is QList<foo::bar>not.
For example, for this code:
struct foo { struct bar { int var; }; };
struct bar { int var; };
...
QList<foo::bar> list1;
QList<bar> list2;
...
This will display the debugger:

Note: I already had to edit autoexp.dat to show QVector correctly, because there seems to be an error in adding QT for VS, which did not configure them correctly for Qt5.
So, is there a way to fix this (by editing autoexp.dat / something else)?
source
share