diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2015-11-23 21:05:04 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2015-11-23 21:05:04 +0000 |
commit | c6bb4241fd8f09cc76263d0879b5ba005046d04b (patch) | |
tree | fb35149ebbcbd14db831831768c68b8115fc4643 /clang/include/clang-c | |
parent | 6f7c19a494fdf8aecf5053e4201f222eb1fa4bed (diff) | |
download | bcm5719-llvm-c6bb4241fd8f09cc76263d0879b5ba005046d04b.tar.gz bcm5719-llvm-c6bb4241fd8f09cc76263d0879b5ba005046d04b.zip |
Fix a warning about commas at the end of enumerator lists.
llvm-svn: 253914
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index b8314814d6d..e0c623e883d 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/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); |