Remove unused stringutils methods

This commit is contained in:
Lars Toenning
2022-04-25 19:32:42 +02:00
committed by Mat Sutcliffe
parent beeabb51c2
commit 0c1a5a5c97
10 changed files with 99 additions and 163 deletions

View File

@@ -408,13 +408,6 @@ namespace BlackSample
}
out << "Remove from 100,000 strings all uppercase letters: (regex) " << timer.elapsed() << "ms" << endl << Qt::endl;
timer.start();
{
auto lines = splitLines(bigString);
Q_UNUSED(lines);
}
out << "Split 100,000 line string into list of lines: (QStringList) " << timer.elapsed() << "ms" << Qt::endl;
timer.start();
{
auto lines = splitLinesRefs(bigString);