mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
No need to convert explicitly
This commit is contained in:
parent
b5153a6689
commit
9f2b5bf0f8
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
FSPath operator/ (const FSPath& lhs, const FSPath& rhs)
|
||||
{
|
||||
FSPath res{lhs};
|
||||
res /= FSPath{rhs};
|
||||
res /= rhs;
|
||||
return res;
|
||||
}
|
||||
|
||||
|
@ -56,7 +56,7 @@ FSPath& FSPath::operator/= (const FSPath & rhs)
|
|||
}
|
||||
}
|
||||
|
||||
*this = FSPath(correctedPath);
|
||||
*this = correctedPath;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue