Skip to content

Commit 99bdef1

Browse files
author
Dave Bartolomeo
committed
Fix compilation warnings
1 parent d66cb7e commit 99bdef1

File tree

1 file changed

+3
-3
lines changed
  • actions/ql/lib/codeql/actions/controlflow/internal

1 file changed

+3
-3
lines changed

actions/ql/lib/codeql/actions/controlflow/internal/Cfg.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ private module Implementation implements CfgShared::InputSig<Location> {
9797
// Not using CFG splitting, so the following are just dummy types.
9898
private newtype TUnit = Unit()
9999

100-
class SplitKindBase = TUnit;
100+
additional class SplitKindBase = TUnit;
101101

102-
class Split extends TUnit {
102+
additional class Split extends TUnit {
103103
abstract string toString();
104104
}
105105

@@ -115,7 +115,7 @@ private module Implementation implements CfgShared::InputSig<Location> {
115115
)
116116
}
117117

118-
int maxSplits() { result = 0 }
118+
additional int maxSplits() { result = 0 }
119119

120120
predicate scopeFirst(CfgScope scope, AstNode e) {
121121
first(scope.(Workflow), e) or

0 commit comments

Comments
 (0)