mirror of
https://github.com/github/codeql.git
synced 2026-02-15 14:33:40 +01:00
12 lines
265 B
Plaintext
12 lines
265 B
Plaintext
/**
|
|
* @kind graph
|
|
*/
|
|
|
|
private import cpp
|
|
private import semmle.code.cpp.PrintAST
|
|
private import PrintConfig
|
|
|
|
private class PrintConfig extends PrintAstConfiguration {
|
|
override predicate shouldPrintDeclaration(Declaration decl) { shouldDumpDeclaration(decl) }
|
|
}
|