mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
16 lines
265 B
Plaintext
16 lines
265 B
Plaintext
/**
|
|
* @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
|