Hi,

If I use typedef for a complex object to facilitate with naming,
auto-complete fails to do its job. for instance:

std::vector<std::pair<int, double> > A; // can use auto-complete for A
typedef std::vector<std::pair<int, double> > new_type;
new_type B; // auto-complete does not work with B

Is this natural?
_______________________________________________
Qt-creator mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qt-creator

Reply via email to