debugger: don't test the gcc RVO bug too often

This commit is contained in:
hjk
2010-08-24 14:53:43 +02:00
parent 0d7322c48c
commit 9e8f6cf860

View File

@@ -1508,14 +1508,14 @@ void testQVector()
vec.append(false);
}
QVector<QList<int> > testQVectorOfQList()
void testQVectorOfQList()
{
QVector<QList<int> > v;
QVector<QList<int> > *pv = &v;
v.append(QList<int>() << 1);
v.append(QList<int>() << 2 << 3);
Q_UNUSED(pv);
return v;
//return v;
}