forked from OSchip/llvm-project
Fix warning: commas at the end of enumerator lists are a C++11 extension [-Wc++11-extensions]
llvm-svn: 184972
This commit is contained in:
parent
e7e4a449ce
commit
cd5b2cfd60
|
@ -78,7 +78,7 @@ public:
|
|||
LeadingEmptyMacro = 0x10, // Empty macro exists before this token.
|
||||
HasUDSuffix = 0x20, // This string or character literal has a ud-suffix.
|
||||
HasUCN = 0x40, // This identifier contains a UCN.
|
||||
IgnoredComma = 0x80, // This comma is not a macro argument separator (MS).
|
||||
IgnoredComma = 0x80 // This comma is not a macro argument separator (MS).
|
||||
};
|
||||
|
||||
tok::TokenKind getKind() const { return (tok::TokenKind)Kind; }
|
||||
|
|
Loading…
Reference in New Issue