mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
9 lines
122 B
Plaintext
9 lines
122 B
Plaintext
import cpp
|
|
|
|
from Class c, boolean ispod
|
|
where
|
|
if c.isPOD()
|
|
then ispod = true
|
|
else ispod = false
|
|
select c, ispod
|