Revert "bump min ver to 15 for apple clang"

This reverts commit e23bf42097.

Turns out at v14 the mainline and apple clang version matched.

https://en.wikipedia.org/wiki/Xcode#Toolchain_versions
This commit is contained in:
Viktor Szakats 2025-07-17 21:08:14 +02:00
parent e23bf42097
commit aafeb969d3
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -3319,7 +3319,7 @@ CURL_EXTERN CURLcode curl_easy_ssls_export(CURL *handle,
/* the typechecker does not work in C++ (yet) */
#if ((defined(__GNUC__) && defined(__GNUC_MINOR__) && \
((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) || \
(defined(__clang__) && __clang_major__ >= 15)) && \
(defined(__clang__) && __clang_major__ >= 14)) && \
!defined(__cplusplus) && !defined(CURL_DISABLE_TYPECHECK)
#include "typecheck-gcc.h"
#else