From: Chad Rosier Date: Mon, 23 Nov 2015 21:05:04 +0000 (+0000) Subject: Fix a warning about commas at the end of enumerator lists. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=affe30e522ba1f222a8c4f634655e75f93ea2bb8;p=clang Fix a warning about commas at the end of enumerator lists. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253914 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index b8314814d6..e0c623e883 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -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);