mirror of
https://github.com/github/codeql.git
synced 2026-05-10 01:10:09 +02:00
8 lines
164 B
Plaintext
8 lines
164 B
Plaintext
import cpp
|
|
|
|
from Class c, string isFinal
|
|
where c.getName() != "__va_list_tag"
|
|
and if c.isFinal() then isFinal = "final" else isFinal = "-----"
|
|
select c, isFinal
|
|
|