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 a8020f4 commit 2908acfCopy full SHA for 2908acf
cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowUtil.qll
@@ -1296,9 +1296,9 @@ private module GetConvertedResultExpression {
1296
private predicate excludeAsDefinitionResult(StoreInstruction store) {
1297
// Exclude the store to the temporary generated by a ternary expression.
1298
exists(TranslatedConditionalExpr tce |
1299
- store = tce.getInstruction(any(ConditionValueFalseStoreTag tag))
+ store = tce.getInstruction(ConditionValueFalseStoreTag())
1300
or
1301
- store = tce.getInstruction(any(ConditionValueTrueStoreTag tag))
+ store = tce.getInstruction(ConditionValueTrueStoreTag())
1302
)
1303
}
1304
0 commit comments