mirror of
https://github.com/github/codeql.git
synced 2026-06-26 07:07:07 +02:00
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
/**
|
|
* @name Failed to include header file
|
|
* @description A count of all failed includes, grouped by filename.
|
|
* @kind metric
|
|
* @tags summary telemetry
|
|
* @id cpp/telemetry/failed-includes
|
|
*/
|
|
|
|
import Metrics
|
|
|
|
from CppMetrics::MissingIncludeCount e
|
|
where RankMetric<CppMetrics::MissingIncludeCount>::getRank(e) <= 50
|
|
select e.getIncludeText(), e.getValue()
|