mirror of
https://github.com/github/codeql.git
synced 2026-03-06 15:49:08 +01:00
10 lines
151 B
Plaintext
10 lines
151 B
Plaintext
import semmle.code.cpp.PODType03
|
|
|
|
|
|
from Class c, boolean ispod
|
|
where
|
|
if isPODClass03(c)
|
|
then ispod = true
|
|
else ispod = false
|
|
select c, ispod
|