Skip to content

Commit 6f6f023

Browse files
committed
Address query formatting
1 parent c5c8509 commit 6f6f023

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

c/common/src/codingstandards/c/UndefinedBehavior.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class CUndefinedMainDefinition extends CUndefinedBehavior, Function {
2727
}
2828

2929
override string getReason() {
30-
result = "The behavior of the program is undefined because the main function is not defined according to the C standard."
30+
result =
31+
"The behavior of the program is undefined because the main function is not defined according to the C standard."
3132
}
32-
3333
}

cpp/common/src/codingstandards/cpp/Expr.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,4 @@ class BitShiftExpr extends BinaryBitwiseOperation {
187187
this instanceof LShiftExpr or
188188
this instanceof RShiftExpr
189189
}
190-
}
190+
}

cpp/common/src/codingstandards/cpp/Literals.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ class Utf32StringLiteral extends StringLiteral {
3131

3232
class LiteralZero extends Literal {
3333
LiteralZero() { this.getValue() = "0" }
34-
}
34+
}

0 commit comments

Comments
 (0)