[clang] Reapply "[Clang][Sema] Diagnose function/variable templates that shadow their own template parameters (#78274)" (PR #79683)
Krystian Stasiowski via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 15 09:51:18 PST 2024
================
@@ -885,16 +885,19 @@ bool Sema::DiagnoseUninstantiableTemplate(SourceLocation PointOfInstantiation,
/// that the template parameter 'PrevDecl' is being shadowed by a new
/// declaration at location Loc. Returns true to indicate that this is
/// an error, and false otherwise.
-void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl) {
+void Sema::DiagnoseTemplateParameterShadow(SourceLocation Loc, Decl *PrevDecl,
+ bool IssueWarning) {
----------------
sdkrystian wrote:
I applied the suggested changes, so this should be good to go once cor3ntin responds
https://github.com/llvm/llvm-project/pull/79683
More information about the cfe-commits
mailing list