mirror of
https://github.com/github/codeql.git
synced 2026-01-07 11:40:27 +01:00
11 lines
124 B
Plaintext
11 lines
124 B
Plaintext
/**
|
|
* @name Specifiers1
|
|
*/
|
|
import cpp
|
|
|
|
from Variable v
|
|
where v.isConst()
|
|
select v.getLocation().getStartLine(),
|
|
v
|
|
|