File tree 2 files changed +7
-5
lines changed
llvm/include/llvm/Support
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -1224,7 +1224,7 @@ static CXString createCXString(const char *CS) {
1224
1224
static CXString duplicateCXString (const char * CS ) {
1225
1225
CXString Str ;
1226
1226
Str .data = strdup (CS );
1227
- Str .private_flags = 1 ; // CXS_Malloc
1227
+ Str .private_flags = 1 ; /* CXS_Malloc */
1228
1228
return Str ;
1229
1229
}
1230
1230
Original file line number Diff line number Diff line change @@ -55,14 +55,16 @@ std::error_code restorezOSStdHandleAutoConversion(int FD);
55
55
/* * \brief Set the tag information for a file descriptor. */
56
56
std::error_code setzOSFileTag (int FD, int CCSID, bool Text);
57
57
58
- // Get the the tag ccsid for a file name or a file descriptor.
58
+ /* * \brief Get the the tag ccsid for a file name or a file descriptor. */
59
59
ErrorOr<__ccsid_t > getzOSFileTag (const char *FileName, const int FD = -1 );
60
60
61
- // Query the file tag to determine if it needs conversion to UTF-8 codepage.
61
+ /* * \brief Query the file tag to determine if it needs conversion to UTF-8
62
+ * codepage.
63
+ */
62
64
ErrorOr<bool > needzOSConversion (const char *FileName, const int FD = -1 );
63
65
64
- } // namespace llvm
65
- #endif // __cplusplus
66
+ } /* namespace llvm */
67
+ #endif /* __cplusplus */
66
68
67
69
#endif /* __MVS__ */
68
70
You can’t perform that action at this time.
0 commit comments