fix: faulty undef (#509)

In some cases a non existing define is being undefined. This fixes this
case.
SQLITECPP_HAVE_EXPERIMENTAL_FILESYSTEM =>
SQLITECPP_HAVE_STD_EXPERIMENTAL_FILESYSTEM
This commit is contained in:
Sébastien Rombauts 2025-05-27 09:47:07 +02:00 committed by GitHub
commit 817f3310b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,7 +40,7 @@ __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_13_0
#undef SQLITECPP_HAVE_STD_FILESYSTEM
#endif
#if !__has_include(<experimental/filesystem>)
#undef SQLITECPP_HAVE_EXPERIMENTAL_FILESYSTEM
#undef SQLITECPP_HAVE_STD_EXPERIMENTAL_FILESYSTEM
#endif
#endif