mirror of
https://github.com/github/codeql.git
synced 2025-12-23 12:16:33 +01:00
7 lines
293 B
Plaintext
7 lines
293 B
Plaintext
import cpp
|
|
|
|
from Struct s, Attribute a, string alignment
|
|
where a = s.getAnAttribute()
|
|
and (alignment = a.getAnArgument().getValueInt().toString() or alignment = ((Struct)a.getAnArgument().getValueType()).getQualifiedName())
|
|
select a.getLocation().toString(), s.getQualifiedName(), alignment
|