mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +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
|