Remove definition of _GCC_VERSION_AT_LEAST

This macro is unused and is the only piece for compiler-specific
code in this file.
This commit is contained in:
Ievgenii Meshcheriakov 2022-02-18 16:57:35 +01:00
parent 67aadbe967
commit 9d39483d42
1 changed files with 0 additions and 6 deletions

View File

@ -7,12 +7,6 @@
#include <stddef.h>
#if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define _GCC_VERSION_AT_LEAST(major, minor) ((__GNUC__ > (major)) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor)))
#else
# define _GCC_VERSION_AT_LEAST(major, minor) 0
#endif
#define CHECK_LT(a, b) if ((a) >= b) return 0
static const char multibyte_length_table[16] = {