Fixed some dumb mistakes.

This commit is contained in:
goeiecool9999 2022-09-07 20:45:55 +02:00 committed by klaas
parent d5f6cd5bd6
commit b1b6a5d8c3
5 changed files with 13 additions and 24 deletions

View file

@ -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)
{