Skip to content

Commit 0b3758e

Browse files
committed
Fix problem with Windows version check
1 parent a5d4c14 commit 0b3758e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httplib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#endif
2828

2929
#ifdef _WIN32
30-
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0602
30+
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0A00
3131
#error \
3232
"cpp-httplib doesn't support Windows 8 or lower. Please use Windows 10 or later."
3333
#endif

0 commit comments

Comments
 (0)