From: Peter Eisentraut Date: Thu, 16 Jul 2026 09:47:41 +0000 (+0200) Subject: Drop support for _MSC_VER less than 1933 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da9451830455a402fd6e29403a6512ebb2b41d97;p=thirdparty%2Fpostgresql.git Drop support for _MSC_VER less than 1933 Commit aa7c8685234 added a workaround for _MSC_VER less than 1933, which is Visual Studio 2022 version 17.3. Since we dropped support for Visual Studio before 2022, and the versions up to 17.3 are long EOL, we can drop this extra code. Reviewed-by: Jelte Fennema-Nio Discussion: https://www.postgresql.org/message-id/flat/CA+hUKGL7trhWiJ4qxpksBztMMTWDyPnP1QN+Lq341V7QL775DA@mail.gmail.com --- diff --git a/src/include/c.h b/src/include/c.h index 8d1aa4b639d..20cfbac54e7 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -1081,24 +1081,10 @@ pg_noreturn extern void ExceptionalCondition(const char *conditionName, * rationale for the precise behavior of this implementation. See * about the C++ * implementation. - * - * For compilers that don't support this, we fall back on a kluge that assumes - * the compiler will complain about a negative width for a struct bit-field. - * This will not include a helpful error message, but it beats not getting an - * error at all. */ #ifndef __cplusplus -#if !defined(_MSC_VER) || _MSC_VER >= 1933 #define StaticAssertExpr(condition, errmessage) \ ((void) sizeof(struct {static_assert(condition, errmessage); char a;})) -#else /* _MSC_VER < 1933 */ -/* - * This compiler is buggy and fails to compile the previous variant; use a - * fallback implementation. - */ -#define StaticAssertExpr(condition, errmessage) \ - ((void) sizeof(struct { int static_assert_failure : (condition) ? 1 : -1; })) -#endif /* _MSC_VER < 1933 */ #else /* __cplusplus */ #define StaticAssertExpr(condition, errmessage) \ ([]{static_assert(condition, errmessage);})