From dba295c03e1aabfe7157966fa47e4746efc5e86d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 28 Aug 2017 12:50:25 +0200 Subject: [PATCH] intobj: simplify the PROD_INTOBJS macro --- src/intobj.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/intobj.h b/src/intobj.h index 2dc166624e..5ca2033b12 100644 --- a/src/intobj.h +++ b/src/intobj.h @@ -260,7 +260,6 @@ static inline Obj prod_intobjs(Int l, Int r) } #endif -#define PROD_INTOBJS(o, l, r) \ - ((o) = prod_intobjs((Int)(l), (Int)(r)), (o) != (Obj)0) +#define PROD_INTOBJS(o, l, r) ((o) = prod_intobjs((Int)(l), (Int)(r))) #endif // GAP_INTOBJ_H