We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7248fb7 commit ad04356Copy full SHA for ad04356
cpp/ql/src/Telemetry/Metrics.qll
@@ -266,4 +266,12 @@ module CppMetrics {
266
267
override int getValue() { result = count(SyntaxError e) }
268
}
269
+
270
+ class BuildModeNone extends ExtractionMetric {
271
+ BuildModeNone() { this = "build mode none" }
272
273
+ override int getValue() {
274
+ if exists(Compilation c | c.buildModeNone()) then result = 1 else result = 0
275
+ }
276
277
cpp/ql/test/library-tests/extraction_errors/ExtractionMetrics.expected
@@ -1,4 +1,5 @@
1
| #include directives | 2 |
2
+| build mode none | 0 |
3
| calls | 2 |
4
| calls with an explicit target | 1 |
5
| compilations | 2 |
0 commit comments