removed C++17 check

This commit is contained in:
orignal 2024-09-02 18:22:33 -04:00
parent a3e0b3710c
commit cc59003560
9 changed files with 4 additions and 52 deletions

View file

@ -16,8 +16,7 @@
#include <functional>
#ifndef STD_FILESYSTEM
# if (!TARGET_OS_SIMULATOR && \
(__cplusplus >= 201703L) && __has_include(<filesystem>)) // C++ 17 or higher and supports std::filesystem
# if (!TARGET_OS_SIMULATOR && __has_include(<filesystem>)) // supports std::filesystem
# define STD_FILESYSTEM 1
# else
# define STD_FILESYSTEM 0