C++: Minor edits

This commit is contained in:
Calum Grant
2024-11-01 17:15:19 +00:00
parent a53e1dec20
commit 6c402adbcc
3 changed files with 3 additions and 3 deletions

View File

@@ -9,4 +9,4 @@
import Metrics
from CppMetrics::ErrorCount m
select m, m.getValue() as c order by c desc
select m.toString(), m.getValue()

View File

@@ -9,4 +9,4 @@
import Metrics
from QualityMetric m
select m, m.getValue() order by m
select m.toString(), m.getValue()

View File

@@ -9,4 +9,4 @@
import Metrics
from ExtractionMetric m
select m, m.getValue() order by m
select m.toString(), m.getValue()