diff options
author | Daniel Jasper <djasper@google.com> | 2015-08-24 14:28:08 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-08-24 14:28:08 +0000 |
commit | 5d7f06fa606cc55b1231b88096094376fa3a1c57 (patch) | |
tree | ba5792004a30451726aad46e5b94395a679b3f01 /clang/lib/Format/FormatToken.h | |
parent | d3aaa18e5d2396b3113a279e75b668ef89b5708f (diff) | |
download | bcm5719-llvm-5d7f06fa606cc55b1231b88096094376fa3a1c57.tar.gz bcm5719-llvm-5d7f06fa606cc55b1231b88096094376fa3a1c57.zip |
clang-format: Make formatting of member function reference qualifiers
more consistent.
Before:
SomeType MemberFunction(const Deleted &)&&;
SomeType MemberFunction(const Deleted &) && { ... }
After:
SomeType MemberFunction(const Deleted &)&&;
SomeType MemberFunction(const Deleted &)&& { ... }
llvm-svn: 245843
Diffstat (limited to 'clang/lib/Format/FormatToken.h')
-rw-r--r-- | clang/lib/Format/FormatToken.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/Format/FormatToken.h b/clang/lib/Format/FormatToken.h index c5db18c8e0e..f50558c6ecf 100644 --- a/clang/lib/Format/FormatToken.h +++ b/clang/lib/Format/FormatToken.h @@ -525,6 +525,8 @@ private: /// properly supported by Clang's lexer. struct AdditionalKeywords { AdditionalKeywords(IdentifierTable &IdentTable) { + kw_final = &IdentTable.get("final"); + kw_override = &IdentTable.get("override"); kw_in = &IdentTable.get("in"); kw_CF_ENUM = &IdentTable.get("CF_ENUM"); kw_CF_OPTIONS = &IdentTable.get("CF_OPTIONS"); @@ -538,7 +540,6 @@ struct AdditionalKeywords { kw_abstract = &IdentTable.get("abstract"); kw_extends = &IdentTable.get("extends"); - kw_final = &IdentTable.get("final"); kw_implements = &IdentTable.get("implements"); kw_instanceof = &IdentTable.get("instanceof"); kw_interface = &IdentTable.get("interface"); @@ -562,6 +563,8 @@ struct AdditionalKeywords { } // Context sensitive keywords. + IdentifierInfo *kw_final; + IdentifierInfo *kw_override; IdentifierInfo *kw_in; IdentifierInfo *kw_CF_ENUM; IdentifierInfo *kw_CF_OPTIONS; @@ -578,7 +581,6 @@ struct AdditionalKeywords { // Java keywords. IdentifierInfo *kw_abstract; IdentifierInfo *kw_extends; - IdentifierInfo *kw_final; IdentifierInfo *kw_implements; IdentifierInfo *kw_instanceof; IdentifierInfo *kw_interface; |