r341756 - [Parser] Remove an unnecessary `mutable`
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Sat Sep 8 18:54:18 PDT 2018
Author: maskray
Date: Sat Sep 8 18:54:18 2018
New Revision: 341756
URL: http://llvm.org/viewvc/llvm-project?rev=341756&view=rev
Log:
[Parser] Remove an unnecessary `mutable`
Modified:
cfe/trunk/include/clang/Parse/Parser.h
Modified: cfe/trunk/include/clang/Parse/Parser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Parser.h?rev=341756&r1=341755&r2=341756&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Parser.h (original)
+++ cfe/trunk/include/clang/Parse/Parser.h Sat Sep 8 18:54:18 2018
@@ -119,7 +119,7 @@ class Parser : public CodeCompletionHand
IdentifierInfo *Ident_pixel;
/// Objective-C contextual keywords.
- mutable IdentifierInfo *Ident_instancetype;
+ IdentifierInfo *Ident_instancetype;
/// Identifier for "introduced".
IdentifierInfo *Ident_introduced;
More information about the cfe-commits
mailing list