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:
Nico Weber 2013-06-26 17:31:55 +00:00
parent e7e4a449ce
commit cd5b2cfd60
1 changed files with 1 additions and 1 deletions

View File

@ -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; }