diff options
author | Nico Weber <nicolasweber@gmx.de> | 2012-12-17 03:51:09 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2012-12-17 03:51:09 +0000 |
commit | 355a1660d6a3c66546dfd2476b60fa7a19b70ee3 (patch) | |
tree | c2a11acf887c6ec82b02b6ee032081374573c216 /include/clang | |
parent | 24ee6ea5125dd1a4c5772f7f69662a80998d79f1 (diff) |
IdentifierResolver: Remove an unnecessary include and an unused parameter.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170297 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Sema/IdentifierResolver.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/clang/Sema/IdentifierResolver.h b/include/clang/Sema/IdentifierResolver.h index dff013423a..0b1b74a0d8 100644 --- a/include/clang/Sema/IdentifierResolver.h +++ b/include/clang/Sema/IdentifierResolver.h @@ -158,8 +158,7 @@ public: /// \param ExplicitInstantiationOrSpecialization When true, we are checking /// whether the declaration is in scope for the purposes of explicit template /// instantiation or specialization. The default is false. - bool isDeclInScope(Decl *D, DeclContext *Ctx, ASTContext &Context, - Scope *S = 0, + bool isDeclInScope(Decl *D, DeclContext *Ctx, Scope *S = 0, bool ExplicitInstantiationOrSpecialization = false) const; /// AddDecl - Link the decl to its shadowed decl chain. |