From: NAKAMURA Takumi Date: Wed, 1 Nov 2017 13:47:55 +0000 (+0000) Subject: Fix warnings discovered by rL317076. [-Wunused-private-field] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3789ad4283ec09df1ed8411abbb227d76e7ef8cb;p=clang Fix warnings discovered by rL317076. [-Wunused-private-field] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@317091 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index 0abf0f3258..66328adad6 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -1724,7 +1724,6 @@ public: ExprResult Expr; TemplateName Template; ParsedType Type; - const IdentifierInfo *Keyword; explicit NameClassification(NameClassificationKind Kind) : Kind(Kind) {} @@ -1733,8 +1732,7 @@ public: NameClassification(ParsedType Type) : Kind(NC_Type), Type(Type) {} - NameClassification(const IdentifierInfo *Keyword) - : Kind(NC_Keyword), Keyword(Keyword) {} + NameClassification(const IdentifierInfo *Keyword) : Kind(NC_Keyword) {} static NameClassification Error() { return NameClassification(NC_Error);