Skip to content

Commit 122ab6e

Browse files
committed
C#: fix some ql/non-doc-block warnings
1 parent ddf93b5 commit 122ab6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ class SsaPhiNode extends Node, TSsaPhiNode {
431431

432432
SsaPhiNode() { this = TSsaPhiNode(phi) }
433433

434-
/* Get the phi node associated with this node. */
434+
/** Gets the phi node associated with this node. */
435435
Ssa::PhiNode getPhiNode() { result = phi }
436436

437437
override Declaration getEnclosingCallable() { result = this.getFunction() }

csharp/ql/lib/semmle/code/csharp/exprs/Creation.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,10 +435,10 @@ class AnonymousFunctionExpr extends Expr, Callable, Modifiable, @anonymous_funct
435435
* A lambda expression, for example `(int x) => x + 1`.
436436
*/
437437
class LambdaExpr extends AnonymousFunctionExpr, @lambda_expr {
438-
/* Holds if this lambda expression has explicit return type. */
438+
/** Holds if this lambda expression has explicit return type. */
439439
predicate hasExplicitReturnType() { lambda_expr_return_type(this, _) }
440440

441-
/* Gets the explicit return type of this lambda expression, if any. */
441+
/** Gets the explicit return type of this lambda expression, if any. */
442442
Type getExplicitReturnType() { lambda_expr_return_type(this, getTypeRef(result)) }
443443

444444
override string toString() { result = "(...) => ..." }

0 commit comments

Comments
 (0)