mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
13 lines
213 B
Plaintext
13 lines
213 B
Plaintext
/**
|
|
* @name Unused parameter
|
|
* @description Finds parameters that are not accessed
|
|
* @tags parameter
|
|
* access
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from Parameter p
|
|
where p.isNamed() and not exists(p.getAnAccess())
|
|
select p
|