doc: update documentation for IO helper.
- update IO helper ducumentation. - fix a latent Linux compile error in IO helper.
This commit is contained in:
@ -28,7 +28,7 @@ namespace YYCC::IOHelper {
|
||||
return _wfopen(wpath.c_str(), wmode.c_str());
|
||||
|
||||
#else
|
||||
return std::fopen(u8_filepath, u8_mode);
|
||||
return std::fopen(EncodingHelper::ToOrdinary(u8_filepath), EncodingHelper::ToOrdinary(u8_mode));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user