r370141 - Fix "commas at the end of enumerator lists are a C99-specific"

Vitaly Buka via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 27 18:04:51 PDT 2019


Author: vitalybuka
Date: Tue Aug 27 18:04:50 2019
New Revision: 370141

URL: http://llvm.org/viewvc/llvm-project?rev=370141&view=rev
Log:
Fix "commas at the end of enumerator lists are a C99-specific"

Modified:
    cfe/trunk/include/clang-c/Index.h

Modified: cfe/trunk/include/clang-c/Index.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang-c/Index.h?rev=370141&r1=370140&r2=370141&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Tue Aug 27 18:04:50 2019
@@ -1361,7 +1361,7 @@ enum CXTranslationUnit_Flags {
   /**
    * Tells the preprocessor not to skip excluded conditional blocks.
    */
-  CXTranslationUnit_RetainExcludedConditionalBlocks = 0x8000,
+  CXTranslationUnit_RetainExcludedConditionalBlocks = 0x8000
 };
 
 /**




More information about the cfe-commits mailing list