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 {
6
6
*
7
7
* The format is "file://filePath:startLine:startColumn:endLine:endColumn".
8
8
*/
9
- string toString ( ) {
10
- result = super .toString ( )
11
- }
9
+ string toString ( ) { result = super .toString ( ) }
10
+
12
11
/**
13
12
* Holds if this element is at the specified location.
14
13
* 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> {
30
30
31
31
private module RelativeBounds implements BoundSig< FloatDelta > {
32
32
class SemBound instanceof SemanticBound:: SemBound {
33
- SemBound ( ) {
34
- not this instanceof SemanticBound:: SemZeroBound
35
- }
33
+ SemBound ( ) { not this instanceof SemanticBound:: SemZeroBound }
36
34
37
35
string toString ( ) { result = super .toString ( ) }
38
36
You can’t perform that action at this time.
0 commit comments