mirror of
https://github.com/github/codeql.git
synced 2026-01-28 13:53:10 +01:00
11 lines
147 B
Plaintext
11 lines
147 B
Plaintext
/**
|
|
* @name Specifiers2
|
|
*/
|
|
import cpp
|
|
|
|
from Variable v
|
|
where v.hasSpecifier("extern")
|
|
select v.getLocation().getStartLine(),
|
|
v.getName()
|
|
|