mirror of
https://github.com/nlohmann/json.git
synced 2025-01-22 18:13:27 +08:00
fix _MSC_VER version to check for std::filesystem (#3240)
This commit is contained in:
parent
cc59ab122f
commit
78ddf2bcf8
@ -70,7 +70,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// no filesystem support before MSVC 19.14: https://en.cppreference.com/w/cpp/compiler_support
|
// no filesystem support before MSVC 19.14: https://en.cppreference.com/w/cpp/compiler_support
|
||||||
#if defined(_MSC_VER) && _MSC_VER < 1940
|
#if defined(_MSC_VER) && _MSC_VER < 1914
|
||||||
#undef JSON_HAS_FILESYSTEM
|
#undef JSON_HAS_FILESYSTEM
|
||||||
#undef JSON_HAS_EXPERIMENTAL_FILESYSTEM
|
#undef JSON_HAS_EXPERIMENTAL_FILESYSTEM
|
||||||
#endif
|
#endif
|
||||||
|
@ -2367,7 +2367,7 @@ using is_detected_convertible =
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// no filesystem support before MSVC 19.14: https://en.cppreference.com/w/cpp/compiler_support
|
// no filesystem support before MSVC 19.14: https://en.cppreference.com/w/cpp/compiler_support
|
||||||
#if defined(_MSC_VER) && _MSC_VER < 1940
|
#if defined(_MSC_VER) && _MSC_VER < 1914
|
||||||
#undef JSON_HAS_FILESYSTEM
|
#undef JSON_HAS_FILESYSTEM
|
||||||
#undef JSON_HAS_EXPERIMENTAL_FILESYSTEM
|
#undef JSON_HAS_EXPERIMENTAL_FILESYSTEM
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user