Skip to content

Commit d1c0294

Browse files
committed
Shared: Delete hallucinated return values.
1 parent 5e401ab commit d1c0294

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ signature module InputSig {
148148
* Predicate to force high precision for the given content.
149149
*
150150
* @param c The content to force high precision for.
151-
* @return True if high precision is forced for the content, false otherwise.
152151
*/
153152
predicate forceHighPrecision(Content c);
154153

@@ -196,7 +195,6 @@ signature module InputSig {
196195
*
197196
* @param ppos The parameter position.
198197
* @param apos The argument position.
199-
* @return True if the parameter position matches the argument position, false otherwise.
200198
*/
201199
predicate parameterMatch(ParameterPosition ppos, ArgumentPosition apos);
202200

@@ -205,7 +203,6 @@ signature module InputSig {
205203
*
206204
* @param node1 The first node in the flow step.
207205
* @param node2 The second node in the flow step.
208-
* @return True if there is a simple local flow step between node1 and node2, false otherwise.
209206
*/
210207
predicate simpleLocalFlowStep(Node node1, Node node2);
211208

shared/rangeanalysis/codeql/rangeanalysis/RangeAnalysis.qll

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ signature module Semantic {
183183
* Checks if the guard directly controls a given basic block.
184184
* @param controlled The basic block to check.
185185
* @param branch Indicates if the control is a branch or not.
186-
* @returns True if the guard directly controls the basic block, false otherwise.
187186
*/
188187
predicate directlyControls(BasicBlock controlled, boolean branch);
189188

@@ -192,7 +191,6 @@ signature module Semantic {
192191
* @param e1 The first expression.
193192
* @param e2 The second expression.
194193
* @param polarity The polarity of the equality.
195-
* @returns True if the guard represents the equality, false otherwise.
196194
*/
197195
predicate isEquality(Expr e1, Expr e2, boolean polarity);
198196

@@ -201,7 +199,6 @@ signature module Semantic {
201199
* @param bb1 The first basic block.
202200
* @param bb2 The second basic block.
203201
* @param branch Indicates if the edge is a branch or not.
204-
* @returns True if there is a branch edge between the basic blocks, false otherwise.
205202
*/
206203
predicate hasBranchEdge(BasicBlock bb1, BasicBlock bb2, boolean branch);
207204
}

0 commit comments

Comments
 (0)