Skip to content
Snippets Groups Projects
Commit 91aa9f6c authored by hjk's avatar hjk
Browse files

debugger: add some test code to the manual test

parent 3f6dfd88
No related branches found
No related tags found
No related merge requests found
...@@ -1783,6 +1783,20 @@ namespace ns { ...@@ -1783,6 +1783,20 @@ namespace ns {
void testStuff() void testStuff()
{ {
QList<QList<int> > list1;
QList<QList<int> > list2;
list1.append(QList<int>() << 1);
list2.append(QList<int>() << 2);
for (int i = 0; i < list1.size(); ++i) {
for (int j = 0; j < list1.at(i).size(); ++j) {
for (int k = i; k < list1.size(); ++k) {
for (int l = j; l < list1.at(k).size(); ++l) {
qDebug() << list1.at(i).at(j)+list2.at(k).at(l);
}
}
}
}
typedef unsigned short wchar; typedef unsigned short wchar;
wchar *str = new wchar[10]; wchar *str = new wchar[10];
str[2] = 0; str[2] = 0;
......
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