mirror of
https://github.com/curl/curl.git
synced 2026-05-15 05:26:20 +03:00
fix compiler warning: zero used for undefined preprocessing identifier
This commit is contained in:
parent
830018aa38
commit
ebadeff0ca
1 changed files with 2 additions and 1 deletions
|
|
@ -1779,7 +1779,8 @@ CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask);
|
|||
#include "multi.h"
|
||||
|
||||
/* the typechecker doesn't work in C++ (yet) */
|
||||
#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \
|
||||
#if defined(__GNUC__) && defined(__GNUC_MINOR__) && \
|
||||
((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \
|
||||
!defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK)
|
||||
#include "typecheck-gcc.h"
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue