Merge "headers: Consistent use of typeof and/or __typeof__." into 15

changes/90/8090/1
Jenkins2 9 years ago committed by Gerrit Code Review
commit 812d14a7e4

@ -854,7 +854,7 @@ struct { \
*/
#define AST_LIST_REMOVE(head, elm, field) \
({ \
__typeof(elm) __elm = (elm); \
typeof(elm) __elm = (elm); \
if (__elm) { \
if ((head)->first == __elm) { \
(head)->first = __elm->field.next; \

Loading…
Cancel
Save