r253914 - Fix a warning about commas at the end of enumerator lists.
Chad Rosier via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 23 13:05:04 PST 2015
Author: mcrosier
Date: Mon Nov 23 15:05:04 2015
New Revision: 253914
URL: http://llvm.org/viewvc/llvm-project?rev=253914&view=rev
Log:
Fix a warning about commas at the end of enumerator lists.
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=253914&r1=253913&r2=253914&view=diff
==============================================================================
--- cfe/trunk/include/clang-c/Index.h (original)
+++ cfe/trunk/include/clang-c/Index.h Mon Nov 23 15:05:04 2015
@@ -2481,7 +2481,7 @@ enum CXVisibilityKind {
/** \brief Symbol seen by the linker but resolves to a symbol inside this object. */
CXVisibility_Protected,
/** \brief Symbol seen by the linker and acts like a normal symbol. */
- CXVisibility_Default,
+ CXVisibility_Default
};
CINDEX_LINKAGE enum CXVisibilityKind clang_getCursorVisibility(CXCursor cursor);
More information about the cfe-commits
mailing list