1
0
mirror of synced 2025-07-17 17:40:57 +03:00

Chang #error to #warning for the 32-bit environment check except 32-bit Windows

This commit is contained in:
yhirose
2025-07-11 22:42:24 -04:00
parent 7b6867bcdf
commit 1f110b54d8
2 changed files with 3 additions and 3 deletions

View File

@ -18,10 +18,10 @@
#error \
"cpp-httplib doesn't support 32-bit Windows. Please use a 64-bit compiler."
#elif defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ < 8
#error \
#warning \
"cpp-httplib doesn't support 32-bit platforms. Please use a 64-bit compiler."
#elif defined(__SIZEOF_SIZE_T__) && __SIZEOF_SIZE_T__ < 8
#error \
#warning \
"cpp-httplib doesn't support platforms where size_t is less than 64 bits."
#endif