| 81 | } |
| 82 | |
| 83 | void BenchIndexedString::bench_kurl() |
| 84 | { |
| 85 | const QVector<uint> indices = setupTest(); |
| 86 | QBENCHMARK { |
| 87 | for (uint index : indices) { |
| 88 | IndexedString str = IndexedString::fromIndex(index); |
| 89 | str.toUrl(); |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | void BenchIndexedString::bench_qhashQString() |
| 95 | { |