mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-14 14:47:58 +08:00
Update check for VS2015
This commit is contained in:
parent
1c879a4b92
commit
61922f919f
@ -10,7 +10,8 @@
|
||||
|
||||
namespace fs
|
||||
{
|
||||
#if defined(_WIN32) || defined(__cpp_lib_filesystem)
|
||||
// VS2015 (_MSC_VER 1900) uses std::experimental::filesystem
|
||||
#if (defined(_MSC_VER) && _MSC_VER > 1900) || defined(__cpp_lib_filesystem)
|
||||
namespace stdfs = std::filesystem;
|
||||
#else
|
||||
namespace stdfs = std::experimental::filesystem;
|
||||
|
Loading…
x
Reference in New Issue
Block a user