mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +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) }
|
|
}
|