From: Fangrui Song Date: Sun, 9 Sep 2018 01:54:18 +0000 (+0000) Subject: [Parser] Remove an unnecessary `mutable` X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=737b192426cc627144f2f6d5e14aecbc72f5358a;p=clang [Parser] Remove an unnecessary `mutable` git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@341756 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h index 32874ee44f..7b89127534 100644 --- a/include/clang/Parse/Parser.h +++ b/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;