From 2d581504f7b8dfd4b5aaa4ed72af023f20600f2e Mon Sep 17 00:00:00 2001 From: Mathias Vorreiter Pedersen Date: Thu, 28 May 2026 12:07:50 +0200 Subject: [PATCH] C++: Fix Copilot comments. --- cpp/ql/lib/semmle/code/cpp/dataflow/ExternalFlow.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/ql/lib/semmle/code/cpp/dataflow/ExternalFlow.qll b/cpp/ql/lib/semmle/code/cpp/dataflow/ExternalFlow.qll index 4ec2f2f3997..4a89e91c74e 100644 --- a/cpp/ql/lib/semmle/code/cpp/dataflow/ExternalFlow.qll +++ b/cpp/ql/lib/semmle/code/cpp/dataflow/ExternalFlow.qll @@ -276,7 +276,7 @@ private predicate isClassConstructedFrom(Class c, Class templateClass) { not c.isConstructedFrom(_) and c = templateClass } -/** Gets the fully templated version of `f`. */ +/** Gets the fully templated version of `c`. */ private Class getFullyTemplatedClassOld(Class c) { not c.isFromUninstantiatedTemplate(_) and isClassConstructedFrom(c, result) @@ -289,7 +289,7 @@ private TemplateClass getOriginalClassTemplate(TemplateClass tc) { result = tc } -/** Gets the fully templated version of `f`. */ +/** Gets the fully templated version of `c`. */ private Class getFullyTemplatedClassNew(Class c) { not c.isFromUninstantiatedTemplate(_) and exists(Class mid |