Skip to content
Snippets Groups Projects
Commit 9e8f6cf8 authored by hjk's avatar hjk
Browse files

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

parent 0d7322c4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment