File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
llvm/include/llvm/Support Expand file tree Collapse file tree 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) {
12241224static CXString duplicateCXString (const char * CS ) {
12251225 CXString Str ;
12261226 Str .data = strdup (CS );
1227- Str .private_flags = 1 ; // CXS_Malloc
1227+ Str .private_flags = 1 ; /* CXS_Malloc */
12281228 return Str ;
12291229}
12301230
Original file line number Diff line number Diff line change @@ -55,14 +55,16 @@ std::error_code restorezOSStdHandleAutoConversion(int FD);
5555/* * \brief Set the tag information for a file descriptor. */
5656std::error_code setzOSFileTag (int FD, int CCSID, bool Text);
5757
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. */
5959ErrorOr<__ccsid_t > getzOSFileTag (const char *FileName, const int FD = -1 );
6060
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+ */
6264ErrorOr<bool > needzOSConversion (const char *FileName, const int FD = -1 );
6365
64- } // namespace llvm
65- #endif // __cplusplus
66+ } /* namespace llvm */
67+ #endif /* __cplusplus */
6668
6769#endif /* __MVS__ */
6870
You can’t perform that action at this time.
0 commit comments