From 0b3758ec36bea9ec567aedc8fa1cacbdbc3a83d6 Mon Sep 17 00:00:00 2001 From: yhirose Date: Wed, 30 Jul 2025 17:39:40 -0400 Subject: [PATCH] Fix problem with Windows version check --- httplib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httplib.h b/httplib.h index 8e65d7d..fc17548 100644 --- a/httplib.h +++ b/httplib.h @@ -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