Skip to content

Commit 69353bb

Browse files
committed
patch upper-case acronyms to be PascalCase
1 parent e3a1579 commit 69353bb

File tree

422 files changed

+3530
-2242
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

422 files changed

+3530
-2242
lines changed

cpp/ql/lib/semmle/code/cpp/Print.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ private import PrintAST
88
private predicate shouldPrintDeclaration(Declaration decl) {
99
not decl instanceof Function
1010
or
11-
not exists(PrintASTConfiguration c)
11+
not exists(PrintAstConfiguration c)
1212
or
13-
exists(PrintASTConfiguration config | config.shouldPrintFunction(decl))
13+
exists(PrintAstConfiguration config | config.shouldPrintFunction(decl))
1414
}
1515

1616
/**

cpp/ql/lib/semmle/code/cpp/PrintAST.ql

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import PrintAST
1212
* Temporarily tweak this class or make a copy to control which functions are
1313
* printed.
1414
*/
15-
class Cfg extends PrintASTConfiguration {
15+
class Cfg extends PrintAstConfiguration {
1616
/**
1717
* TWEAK THIS PREDICATE AS NEEDED.
1818
* Holds if the AST for `func` should be printed.

0 commit comments

Comments
 (0)