mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
10 lines
251 B
Plaintext
10 lines
251 B
Plaintext
import cpp
|
|
|
|
from Function f, ReturnStmt r
|
|
where r.getEnclosingFunction() = f
|
|
select f.getQualifiedName(),
|
|
r.getExpr()
|
|
.getValue()
|
|
.regexpReplaceAll("_[0-9a-f]+AEv$", "_?AEv")
|
|
.regexpReplaceAll("cpp_[0-9a-f]+Foo37_", "cpp_?Foo37_")
|