File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
cpp/ql/lib/experimental/semmle/code/cpp/semantic Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,8 @@ class SemLocation instanceof Location {
66 *
77 * The format is "file://filePath:startLine:startColumn:endLine:endColumn".
88 */
9- string toString ( ) {
10- result = super .toString ( )
11- }
9+ string toString ( ) { result = super .toString ( ) }
10+
1211 /**
1312 * Holds if this element is at the specified location.
1413 * The location spans column `startcolumn` of line `startline` to
Original file line number Diff line number Diff line change @@ -30,9 +30,7 @@ module ConstantBounds implements BoundSig<FloatDelta> {
3030
3131private module RelativeBounds implements BoundSig< FloatDelta > {
3232 class SemBound instanceof SemanticBound:: SemBound {
33- SemBound ( ) {
34- not this instanceof SemanticBound:: SemZeroBound
35- }
33+ SemBound ( ) { not this instanceof SemanticBound:: SemZeroBound }
3634
3735 string toString ( ) { result = super .toString ( ) }
3836
You can’t perform that action at this time.
0 commit comments