Coding style issues fixes

Thanks @Megamouse
This commit is contained in:
DH 2025-03-01 01:02:01 +03:00 committed by Megamouse
parent 976b0a8f1d
commit 95d0cb18e4
10 changed files with 20 additions and 19 deletions

View file

@ -1693,7 +1693,8 @@ fs::file fs::file::from_native_handle(void *handle)
return result;
}
#else
fs::file fs::file::from_native_handle(int fd) {
fs::file fs::file::from_native_handle(int fd)
{
fs::file result;
result.m_file = std::make_unique<unix_file>(fd);
return result;