From: Fangrui Song Date: Sun, 9 Sep 2018 01:54:18 +0000 (+0000) Subject: [Parser] Remove an unnecessary `mutable` X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c14cb73c545297e8198d199f6cb783f544ac736c;p=platform%2Fupstream%2Fllvm.git [Parser] Remove an unnecessary `mutable` llvm-svn: 341756 --- diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index 32874ee..7b89127 100644 --- a/clang/include/clang/Parse/Parser.h +++ b/clang/include/clang/Parse/Parser.h @@ -119,7 +119,7 @@ class Parser : public CodeCompletionHandler { IdentifierInfo *Ident_pixel; /// Objective-C contextual keywords. - mutable IdentifierInfo *Ident_instancetype; + IdentifierInfo *Ident_instancetype; /// Identifier for "introduced". IdentifierInfo *Ident_introduced;