diff options
| author | Fangrui Song <maskray@google.com> | 2018-09-09 01:54:18 +0000 |
|---|---|---|
| committer | Fangrui Song <maskray@google.com> | 2018-09-09 01:54:18 +0000 |
| commit | c14cb73c545297e8198d199f6cb783f544ac736c (patch) | |
| tree | deefa08ee536e67718fa924528782af773d3d99b | |
| parent | e2dd15785b281d842c35a4854c1bee28ebf70594 (diff) | |
| download | bcm5719-llvm-c14cb73c545297e8198d199f6cb783f544ac736c.tar.gz bcm5719-llvm-c14cb73c545297e8198d199f6cb783f544ac736c.zip | |
[Parser] Remove an unnecessary `mutable`
llvm-svn: 341756
| -rw-r--r-- | clang/include/clang/Parse/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Parser.h b/clang/include/clang/Parse/Parser.h index 32874ee44ff..7b89127534a 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; |

