C++: autoformat

This commit is contained in:
Robert Marsh
2023-03-13 15:45:48 -04:00
parent d4e3f7f738
commit b4b7507fe4
2 changed files with 3 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ private import semmle.code.cpp.Location // TODO: SemLocation?
class SemBound instanceof Specific::Bound {
final string toString() { result = super.toString() }
final Location getLocation() {result = super.getLocation() }
final Location getLocation() { result = super.getLocation() }
final SemExpr getExpr(int delta) { result = Specific::getBoundExpr(this, delta) }
}

View File

@@ -230,7 +230,9 @@ signature module UtilSig<DeltaSig DeltaParam> {
signature module BoundSig<DeltaSig D> {
class SemBound {
string toString();
Location getLocation();
SemExpr getExpr(D::Delta delta);
}