mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
forgot to remove this
This commit is contained in:
parent
832af1c668
commit
da45799db2
1 changed files with 0 additions and 13 deletions
|
@ -1,7 +1,5 @@
|
|||
#include "FSPath.h"
|
||||
|
||||
#include <boost/locale/conversion.hpp>
|
||||
|
||||
#ifdef BOOST_OS_UNIX
|
||||
FSPath operator/ (const FSPath& lhs, const FSPath& rhs)
|
||||
{
|
||||
|
@ -24,17 +22,6 @@ FSPath& FSPath::operator/= (const FSPath & rhs)
|
|||
fs::path relPath = rhs.relative_path();
|
||||
fs::path correctedPath = empty() ? rhs.root_path() : *this;
|
||||
|
||||
// helper function to convert a path's alphabet characters to lowercase.
|
||||
auto static lowercase_path = [](fs::path const & path)
|
||||
{
|
||||
std::string string = path.string();
|
||||
for (auto& i : string)
|
||||
{
|
||||
i = std::isalpha(i) ? std::tolower(i) : i;
|
||||
}
|
||||
return string;
|
||||
};
|
||||
|
||||
bool found;
|
||||
for (auto const &it : relPath)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue