mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
17 lines
300 B
Plaintext
17 lines
300 B
Plaintext
/**
|
|
* @id cpp/examples/unusedlocalvar
|
|
* @name Unused local variable
|
|
* @description Finds local variables that are not accessed
|
|
* @tags variable
|
|
* local
|
|
* access
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from LocalScopeVariable v
|
|
where
|
|
not v instanceof Parameter and
|
|
not exists(v.getAnAccess())
|
|
select v
|