remove valgrind support leftovers

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-11-21 09:14:17 +02:00
parent 41256c4bb8
commit be1469bbcf
2 changed files with 0 additions and 6 deletions

View file

@ -31,7 +31,6 @@ QT_BEGIN_NAMESPACE
\value WalltimeMilliseconds Clock time in milliseconds
\value CPUTicks CPU time
\value InstructionReads Instruction reads
\value Events Event count
\sa QTest::benchmarkMetricName(), QTest::benchmarkMetricUnit()
@ -50,8 +49,6 @@ const char * QTest::benchmarkMetricName(QBenchmarkMetric metric)
return "WalltimeMilliseconds";
case CPUTicks:
return "CPUTicks";
case InstructionReads:
return "InstructionReads";
case Events:
return "Events";
}
@ -70,8 +67,6 @@ const char * QTest::benchmarkMetricUnit(QBenchmarkMetric metric)
return "msecs";
case CPUTicks:
return "CPU ticks";
case InstructionReads:
return "instruction reads";
case Events:
return "events";
}

View file

@ -33,7 +33,6 @@ namespace QTest {
enum QBenchmarkMetric {
WalltimeMilliseconds,
CPUTicks,
InstructionReads,
Events
};