Files
gh-mrva/FlatBuffersFunc.ql
2024-01-23 19:42:53 -08:00

14 lines
256 B
Plaintext

/**
* @name pickfun
* @description pick function from FlatBuffers
* @kind problem
* @id cpp-flatbuffer-func
* @problem.severity warning
*/
import cpp
from Function f
where f.getName() = "MakeBinaryRegion"
select f, "definition of MakeBinaryRegion"