mirror of
https://github.com/github/codeql.git
synced 2026-01-28 05:42:58 +01:00
12 lines
154 B
Plaintext
12 lines
154 B
Plaintext
/**
|
|
* @name Specifiers3
|
|
*/
|
|
import cpp
|
|
|
|
from Variable v, Type t
|
|
where v.getType() = t
|
|
and t.isConst()
|
|
select v.getLocation().getStartLine(),
|
|
v
|
|
|