Skip to content

Commit

Permalink
include/curl/curl.h: bump the deprecated requirements to gcc 5.3
Browse files Browse the repository at this point in the history
Reported-by: Stephan Guilloux
Fixes #9917
Closes #9918
  • Loading branch information
bagder committed Nov 15, 2022
1 parent a8e6351 commit bbb3640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/curl/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

/* Compile-time deprecation macros. */
#if defined(__GNUC__) && defined(__GNUC_MINOR__) && \
((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) && \
((__GNUC__ > 5) || (__GNUC__ == 5 && __GNUC_MINOR__ >= 3)) && \
!defined(__INTEL_COMPILER) && \
!defined(CURL_DISABLE_DEPRECATION) && !defined(BUILDING_LIBCURL)
#define CURL_DEPRECATED(version, message) \
Expand Down

0 comments on commit bbb3640

Please sign in to comment.