Files
gh-mrva/FlatBuffersFunc.ql
Michael Hohn 56e68f5eed
Some checks failed
release / release (push) Has been cancelled
fix test configuration
2025-08-19 11:23:48 -07:00

16 lines
298 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" or
f.getName() = "microprotocols_add"
select f, "definition of MakeBinaryRegion"