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:
parent
67aadbe967
commit
9d39483d42
|
@ -7,12 +7,6 @@
|
||||||
|
|
||||||
#include <stddef.h>
|
#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
|
#define CHECK_LT(a, b) if ((a) >= b) return 0
|
||||||
|
|
||||||
static const char multibyte_length_table[16] = {
|
static const char multibyte_length_table[16] = {
|
||||||
|
|
Loading…
Reference in New Issue