mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
8 lines
150 B
Plaintext
8 lines
150 B
Plaintext
import cpp
|
|
|
|
from Class c, string s
|
|
where if exists(c.getABaseClass())
|
|
then s = c.getABaseClass().toString()
|
|
else s = "<none>"
|
|
select c, s
|