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 dffce89Copy full SHA for dffce89
httplib.h
@@ -16,8 +16,13 @@
16
*/
17
18
#if defined(_WIN32) && !defined(_WIN64)
19
+#if defined(_MSC_VER)
20
+#pragma message( \
21
+ "cpp-httplib doesn't support 32-bit Windows. Please use a 64-bit compiler.")
22
+#else
23
#warning \
24
"cpp-httplib doesn't support 32-bit Windows. Please use a 64-bit compiler."
25
+#endif
26
#elif defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ < 8
27
28
"cpp-httplib doesn't support 32-bit platforms. Please use a 64-bit compiler."
0 commit comments