[llvm] [llvm] Use ISO C90 style comment in C code (PR #128192)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 08:08:30 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-support
Author: None (foxtran)
<details>
<summary>Changes</summary>
This patch fixes warning which occurs during compilation of clang with GCC:
```
C++ style comments are not allowed in ISO C90
```
Similar PR for clang: #<!-- -->128189
---
Full diff: https://github.com/llvm/llvm-project/pull/128192.diff
1 Files Affected:
- (modified) llvm/include/llvm/Support/AutoConvert.h (+4-4)
``````````diff
diff --git a/llvm/include/llvm/Support/AutoConvert.h b/llvm/include/llvm/Support/AutoConvert.h
index 5d6d9394ef1d8..4f6a3d2ac48fa 100644
--- a/llvm/include/llvm/Support/AutoConvert.h
+++ b/llvm/include/llvm/Support/AutoConvert.h
@@ -55,14 +55,14 @@ std::error_code restorezOSStdHandleAutoConversion(int FD);
/** \brief Set the tag information for a file descriptor. */
std::error_code setzOSFileTag(int FD, int CCSID, bool Text);
-// Get the the tag ccsid for a file name or a file descriptor.
+/** Get the the tag ccsid for a file name or a file descriptor. */
ErrorOr<__ccsid_t> getzOSFileTag(const char *FileName, const int FD = -1);
-// Query the file tag to determine if it needs conversion to UTF-8 codepage.
+/** Query the file tag to determine if it needs conversion to UTF-8 codepage. */
ErrorOr<bool> needzOSConversion(const char *FileName, const int FD = -1);
-} // namespace llvm
-#endif // __cplusplus
+} /* namespace llvm */
+#endif /* __cplusplus */
#endif /* __MVS__ */
``````````
</details>
https://github.com/llvm/llvm-project/pull/128192
More information about the llvm-commits
mailing list