We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 698e05f commit 92a7e78Copy full SHA for 92a7e78
cpp/ql/lib/experimental/semmle/code/cpp/semantic/SemanticExprSpecific.qll
@@ -286,7 +286,15 @@ module SemanticExprConfig {
286
)
287
}
288
289
- class Bound = IRBound::Bound;
+ class Bound instanceof IRBound::Bound {
290
+ string toString() { result = super.toString() }
291
+
292
+ final Location getLocation() { result = super.getLocation() }
293
+ }
294
295
+ private class ValueNumberBound extends Bound instanceof IRBound::ValueNumberBound {
296
+ override string toString() { result = IRBound::ValueNumberBound.super.toString() }
297
298
299
predicate zeroBound(Bound bound) { bound instanceof IRBound::ZeroBound }
300
0 commit comments