diff options
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index 5ec59294330..da6d414a42e 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -12427,13 +12427,6 @@ Decl *Sema::ActOnParamDeclarator(Scope *S, Declarator &D) { D.setInvalidType(true); } } - - if (LangOpts.CPlusPlus) { - DeclarationNameInfo DNI = GetNameForDeclarator(D); - if (auto *RD = dyn_cast<CXXRecordDecl>(CurContext)) - CheckShadowInheritedFields(DNI.getLoc(), DNI.getName(), RD, - /*DeclIsField*/ false); - } } // Temporarily put parameter variables in the translation unit, not |