mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 22:11:18 +12:00
Fixed some dumb mistakes.
This commit is contained in:
parent
d5f6cd5bd6
commit
b1b6a5d8c3
5 changed files with 13 additions and 24 deletions
|
@ -1,11 +1,15 @@
|
|||
#include "FSPath.h"
|
||||
|
||||
#ifndef BOOST_OS_UNIX
|
||||
FSPath& FSPath::operator/= (const FSPath & other)
|
||||
FSPath& FSPath::operator/ (const FSPath & other)
|
||||
{
|
||||
*this /= other;
|
||||
return *this;
|
||||
}
|
||||
#ifndef BOOST_OS_UNIX
|
||||
FSPath& FSPath::operator/= (const FSPath & other)
|
||||
{
|
||||
fs::path::operator/=(other);
|
||||
}
|
||||
#else
|
||||
FSPath& FSPath::operator/= (const FSPath & other)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue