summaryrefslogtreecommitdiffstats
path: root/include/clang-c
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2015-11-23 21:05:04 +0000
committerChad Rosier <mcrosier@codeaurora.org>2015-11-23 21:05:04 +0000
commitaffe30e522ba1f222a8c4f634655e75f93ea2bb8 (patch)
treeed83910f99048abc67d8ffb42b77db176fdae981 /include/clang-c
parentb5395ff11ac206e9cb3cd5fa97cb14c077e688ff (diff)
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
Diffstat (limited to 'include/clang-c')
-rw-r--r--include/clang-c/Index.h2
1 files changed, 1 insertions, 1 deletions
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);