Skip to content

Commit

Permalink
intobj: simplify the PROD_INTOBJS macro
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored and markuspf committed Aug 28, 2017
1 parent 480cce5 commit dba295c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/intobj.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit dba295c

Please sign in to comment.