summaryrefslogtreecommitdiff
path: root/clang/include/clang-c
diff options
context:
space:
mode:
authorJie Fu <jiefu@tencent.com>2024-08-06 07:03:14 +0800
committerJie Fu <jiefu@tencent.com>2024-08-06 07:03:56 +0800
commit8b68e06731e0033ed3f8d6fe6292ae671611cfa1 (patch)
tree0d4fd1d52618ba463b98ae021b325f14d1189856 /clang/include/clang-c
parentcfd13cbac12b73069c79c89bb37294f77938bb3f (diff)
[clang] Remove commas at the end of enumerator lists [NFC]
/llvm-project/clang/include/clang-c/Index.h:2984:28: error: commas at the end of enumerator lists are a C99-specific feature [-Werror,-Wc99-extensions] CXType_HLSLResource = 179, ^ 1 error generated.
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r--clang/include/clang-c/Index.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h
index f3d485b9e088..f78f4f1b2e6c 100644
--- a/clang/include/clang-c/Index.h
+++ b/clang/include/clang-c/Index.h
@@ -2981,7 +2981,7 @@ enum CXTypeKind {
CXType_BTFTagAttributed = 178,
// HLSL Intangible Types
- CXType_HLSLResource = 179,
+ CXType_HLSLResource = 179
};
/**