Ver Fonte

Fix problem with Windows version check

yhirose há 6 meses atrás
pai
commit
0b3758ec36
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      httplib.h

+ 1 - 1
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