From 7725f870b03bb25ee3c19dffa3471e7905de1c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Tue, 26 Apr 2022 15:13:39 +0300 Subject: [PATCH] MDEV-15250 fixup: Remove MY_GNUC_PREREQ The macro MY_GNUC_PREREQ() was used for testing for some minor GCC 4 versions before GCC 4.8.5, which is the oldest version that supports C++11, which we depend on ever since commit d9613b750c6d975beed0e1d7f0cb1a8dd3ad106b --- include/my_compiler.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/my_compiler.h b/include/my_compiler.h index b87125f8a97..ff049f3d8a6 100644 --- a/include/my_compiler.h +++ b/include/my_compiler.h @@ -77,10 +77,6 @@ Generic (compiler-independent) features. */ -#ifndef MY_GNUC_PREREQ -# define MY_GNUC_PREREQ(maj, min) (0) -#endif - #ifndef MY_ALIGNOF # ifdef __cplusplus template struct my_alignof_helper { char m1; type m2; };