]> granicus.if.org Git - clang/commitdiff
Fix warning: commas at the end of enumerator lists are a C++11 extension [-Wc++11...
authorNico Weber <nicolasweber@gmx.de>
Wed, 26 Jun 2013 17:31:55 +0000 (17:31 +0000)
committerNico Weber <nicolasweber@gmx.de>
Wed, 26 Jun 2013 17:31:55 +0000 (17:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@184972 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Lex/Token.h

index 76c62fe944a94df8bdde610aa1665195a893b6e2..92b0ac3bb4ca47a7bf389afa93756a8b4b4deab2 100644 (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; }