mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
MSVC bug workaround
This commit is contained in:
parent
6164b3d2e2
commit
3b11f22062
4 changed files with 11 additions and 25 deletions
|
@ -8,12 +8,15 @@
|
|||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
|
||||
namespace fs
|
||||
{
|
||||
#ifdef _WIN32
|
||||
static constexpr auto delim = "/\\";
|
||||
static constexpr auto wdelim = L"/\\";
|
||||
using native_handle = void*;
|
||||
#else
|
||||
static constexpr auto delim = "/";
|
||||
static constexpr auto wdelim = L"/";
|
||||
using native_handle = int;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue