diff options
author | Björn Pettersson <bjorn.a.pettersson@ericsson.com> | 2025-05-05 09:15:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-05 09:15:32 +0200 |
commit | 0054ab4dc84b2c8c054fc89df4ca745514ca0da4 (patch) | |
tree | 091fe3c0b79d0462c1f5ff7c1a74f776c714a14b /clang/tools/c-index-test/c-index-test.c | |
parent | 1b0a0c7382bff13e272dd547210edfa6bb06d15f (diff) | |
download | llvm-0054ab4dc84b2c8c054fc89df4ca745514ca0da4.zip llvm-0054ab4dc84b2c8c054fc89df4ca745514ca0da4.tar.gz llvm-0054ab4dc84b2c8c054fc89df4ca745514ca0da4.tar.bz2 |
[NFC] Fix c++ style comment in c file (#138244)
Fix "C++ style comments are not allowed in ISO C90" warnings in some C
files.
Diffstat (limited to 'clang/tools/c-index-test/c-index-test.c')
-rw-r--r-- | clang/tools/c-index-test/c-index-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/c-index-test/c-index-test.c b/clang/tools/c-index-test/c-index-test.c index 7711df3..ee4a2f3 100644 --- a/clang/tools/c-index-test/c-index-test.c +++ b/clang/tools/c-index-test/c-index-test.c @@ -1224,7 +1224,7 @@ static CXString createCXString(const char *CS) { static CXString duplicateCXString(const char *CS) { CXString Str; Str.data = strdup(CS); - Str.private_flags = 1; // CXS_Malloc + Str.private_flags = 1; /* CXS_Malloc */ return Str; } |