From 3defc8b5de03fb9219b0cacf520d69c1a597604e Mon Sep 17 00:00:00 2001 From: Alexandre Boulgakov Date: Mon, 22 Jul 2024 18:27:39 +0100 Subject: [PATCH] C++: Fix typo - remove unbound and unused variable in downgrade script. --- .../25e365d1e8147df0f759b604f96eb4bffea48271/using_container.ql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/using_container.ql b/cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/using_container.ql index 9b88cf8815f..33354341423 100644 --- a/cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/using_container.ql +++ b/cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/using_container.ql @@ -8,7 +8,7 @@ class Element extends @element { from UsingEntry u, Element parent, int kind where - usings(u, target, _, kind) and + usings(u, _, _, kind) and using_container(parent, u) and kind != 3 select parent, u