Skip to content

Commit 0da5d91

Browse files
committed
Merge branch 'main' into use-taint-configuration-in-three-more-queries
2 parents 3c17d90 + 4c2081b commit 0da5d91

File tree

535 files changed

+15359
-2631
lines changed

Some content is hidden

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

535 files changed

+15359
-2631
lines changed

cpp/downgrades/e9a518baf14f4322ac243578a8e1391386ff030f/old.dbscheme

Lines changed: 2096 additions & 0 deletions
Large diffs are not rendered by default.

cpp/downgrades/e9a518baf14f4322ac243578a8e1391386ff030f/semmlecode.cpp.dbscheme

Lines changed: 2096 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
description: Remove uniqueness constraint from the uuid property
2+
compatibility: full
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
category: deprecated
3+
---
4+
* Many classes/predicates/modules that had upper-case acronyms have been renamed to follow our style-guide.
5+
The old name still exists as a deprecated alias.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: breaking
3+
---
4+
* The flow state variants of `isBarrier` and `isAdditionalFlowStep` are no longer exposed in the taint tracking library. The `isSanitizer` and `isAdditionalTaintStep` predicates should be used instead.

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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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)