MSVC bug workaround
This commit is contained in:
+4
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user