Apply suggestion

This commit is contained in:
Arthur Baars
2024-10-17 21:25:05 +02:00
parent be41ca5d4e
commit d4b2dc3711

View File

@@ -13,7 +13,7 @@ private import codeql.rust.elements.FormatTemplate
* INTERNAL: Do not use.
*/
predicate constructImplicitVariableAccess(Raw::FormatArgsExpr parent, int index, int kind) {
exists(NamedFormatArgument arg | unboundNamedFormatArgument(parent, index, kind, arg))
unboundNamedFormatArgument(parent, index, kind, _)
}
/**