forked from qt-creator/qt-creator
debugger: don't test the gcc RVO bug too often
This commit is contained in:
@@ -1508,14 +1508,14 @@ void testQVector()
|
|||||||
vec.append(false);
|
vec.append(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
QVector<QList<int> > testQVectorOfQList()
|
void testQVectorOfQList()
|
||||||
{
|
{
|
||||||
QVector<QList<int> > v;
|
QVector<QList<int> > v;
|
||||||
QVector<QList<int> > *pv = &v;
|
QVector<QList<int> > *pv = &v;
|
||||||
v.append(QList<int>() << 1);
|
v.append(QList<int>() << 1);
|
||||||
v.append(QList<int>() << 2 << 3);
|
v.append(QList<int>() << 2 << 3);
|
||||||
Q_UNUSED(pv);
|
Q_UNUSED(pv);
|
||||||
return v;
|
//return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user