Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 1.3.0
-
None
-
d510aaa02952689a3ce6f27b2d786148ce27e665
Description
Reported here: http://lists.trolltech.com/pipermail/qt-creator/2009-December/005488.html
Due to missing a space between >>, the following example leads to completion of invalid code:
class A { void foo(QVector<QVector<float> > &bar); };
Using the autocomplete of the function arguments in the implementation will yield:
void A::foo(QVector<QVector<float>> &bar);