Skip to content

Commit 8b68e06

Browse files
committed
[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.
1 parent cfd13cb commit 8b68e06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/include/clang-c/Index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2981,7 +2981,7 @@ enum CXTypeKind {
29812981
CXType_BTFTagAttributed = 178,
29822982

29832983
// HLSL Intangible Types
2984-
CXType_HLSLResource = 179,
2984+
CXType_HLSLResource = 179
29852985
};
29862986

29872987
/**

0 commit comments

Comments
 (0)