1
0
mirror of synced 2025-09-05 13:43:59 +03:00

Fix problem with Windows version check

This commit is contained in:
yhirose
2025-07-30 17:39:40 -04:00
parent a5d4c143e5
commit 0b3758ec36

View File

@@ -27,7 +27,7 @@
#endif
#ifdef _WIN32
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0602
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0A00
#error \
"cpp-httplib doesn't support Windows 8 or lower. Please use Windows 10 or later."
#endif