Skip to content

Commit

Permalink
[clang] Remove commas at the end of enumerator lists [NFC]
Browse files Browse the repository at this point in the history
/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.
  • Loading branch information
DamonFool committed Aug 5, 2024
1 parent cfd13cb commit 8b68e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/include/clang-c/Index.h
Original file line number Diff line number Diff line change
Expand Up @@ -2981,7 +2981,7 @@ enum CXTypeKind {
CXType_BTFTagAttributed = 178,

// HLSL Intangible Types
CXType_HLSLResource = 179,
CXType_HLSLResource = 179
};

/**
Expand Down

0 comments on commit 8b68e06

Please sign in to comment.