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 66f88d9 commit 13100b1Copy full SHA for 13100b1
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowDispatch.qll
@@ -40,7 +40,7 @@ DataFlowCallable viableCallable(DataFlowCall call) {
40
result = defaultViableCallable(call)
41
or
42
// Additional call targets
43
- result =
+ result.getUnderlyingCallable() =
44
any(AdditionalCallTarget additional)
45
.viableTarget(call.asCallInstruction().getUnconvertedResultExpression())
46
}
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll
@@ -2681,5 +2681,5 @@ class AdditionalCallTarget extends Unit {
2681
/**
2682
* Gets a viable target for `call`.
2683
*/
2684
- abstract DataFlowCallable viableTarget(Call call);
+ abstract Declaration viableTarget(Call call);
2685
0 commit comments