mirror of
https://github.com/github/codeql.git
synced 2026-04-25 08:45:14 +02:00
12 lines
293 B
Plaintext
12 lines
293 B
Plaintext
/**
|
|
* @kind graph
|
|
*/
|
|
|
|
private import cpp
|
|
private import semmle.code.cpp.ir.implementation.aliased_ssa.PrintIR
|
|
private import PrintConfig
|
|
|
|
private class PrintConfig extends PrintIRConfiguration {
|
|
override predicate shouldPrintDeclaration(Declaration decl) { shouldDumpDeclaration(decl) }
|
|
}
|