mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
Coding style issues fixes
Thanks @Megamouse
This commit is contained in:
parent
976b0a8f1d
commit
95d0cb18e4
10 changed files with 20 additions and 19 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue