| 70 | } |
| 71 | |
| 72 | void BenchIndexedString::bench_qstring() |
| 73 | { |
| 74 | const QVector<uint> indices = setupTest(); |
| 75 | QBENCHMARK { |
| 76 | for (uint index : indices) { |
| 77 | IndexedString str = IndexedString::fromIndex(index); |
| 78 | str.str(); |
| 79 | } |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void BenchIndexedString::bench_kurl() |
| 84 | { |