We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f44c80 commit 058c8e1Copy full SHA for 058c8e1
httplib.h
@@ -15,6 +15,12 @@
15
* Platform compatibility check
16
*/
17
18
+#if defined(_MSC_VER)
19
+#if defined(_WIN32) && !defined(_WIN64)
20
+#pragma message( \
21
+ "cpp-httplib doesn't support 32-bit Windows. Please use a 64-bit compiler.")
22
+#endif
23
+#else
24
#if defined(_WIN32) && !defined(_WIN64)
25
#warning \
26
"cpp-httplib doesn't support 32-bit Windows. Please use a 64-bit compiler."
@@ -25,6 +31,7 @@
31
32
"cpp-httplib doesn't support platforms where size_t is less than 64 bits."
27
33
#endif
34
28
35
29
36
#ifdef _WIN32
30
37
#if defined(_WIN32_WINNT) && _WIN32_WINNT < 0x0A00
0 commit comments