use std::filesystem for windows

This commit is contained in:
orignal 2024-08-28 17:52:08 -04:00
parent b3aa5ad998
commit e957d7bbfb
2 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@
#include <sstream>
#include <functional>
#if (!defined(_WIN32) && !defined(MAC_OSX) && !TARGET_OS_SIMULATOR && \
#if (!defined(MAC_OSX) && !TARGET_OS_SIMULATOR && \
(__cplusplus >= 201703L) && defined(__cpp_lib_filesystem)) // C++ 17 or higher supporting filesystem
# define STD_FILESYSTEM 1
#endif