From: Nico Weber Date: Wed, 26 Jun 2013 17:31:55 +0000 (+0000) Subject: Fix warning: commas at the end of enumerator lists are a C++11 extension [-Wc++11... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2ccf698c58f8aca1bf784998f491ef004351db64;p=clang Fix warning: commas at the end of enumerator lists are a C++11 extension [-Wc++11-extensions] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184972 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Lex/Token.h b/include/clang/Lex/Token.h index 76c62fe944..92b0ac3bb4 100644 --- a/include/clang/Lex/Token.h +++ b/include/clang/Lex/Token.h @@ -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; }