Skip to content

Commit e2c6f7c

Browse files
hashplinggitster
authored andcommitted
Fix definition of ARRAY_SIZE for non-gcc builds
The improved ARRAY_SIZE macro uses BARF_UNLESS_AN_ARRAY which expands to a valid check for recent gcc versions and to 0 for older gcc versions but is not defined on non-gcc builds. Non-gcc builds need this macro to expand to 0 as well. The current outer test (defined(__GNUC__) && (__GNUC__ >= 3)) is a strictly weaker condition than the inner test (GIT_GNUC_PREREQ(3, 1)) so we can omit the outer test and cause the BARF_UNLESS_AN_ARRAY macro to be defined correctly on non-gcc builds as well as gcc builds with older versions. Signed-off-by: Charles Bailey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 89c855e commit e2c6f7c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

git-compat-util.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,13 @@
5858
#define BUILD_ASSERT_OR_ZERO(cond) \
5959
(sizeof(char [1 - 2*!(cond)]) - 1)
6060

61-
#if defined(__GNUC__) && (__GNUC__ >= 3)
62-
# if GIT_GNUC_PREREQ(3, 1)
61+
#if GIT_GNUC_PREREQ(3, 1)
6362
/* &arr[0] degrades to a pointer: a different type from an array */
6463
# define BARF_UNLESS_AN_ARRAY(arr) \
6564
BUILD_ASSERT_OR_ZERO(!__builtin_types_compatible_p(__typeof__(arr), \
6665
__typeof__(&(arr)[0])))
67-
# else
68-
# define BARF_UNLESS_AN_ARRAY(arr) 0
69-
# endif
66+
#else
67+
# define BARF_UNLESS_AN_ARRAY(arr) 0
7068
#endif
7169
/*
7270
* ARRAY_SIZE - get the number of elements in a visible array

0 commit comments

Comments
 (0)