mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-11 21:33:04 +00:00
style: eliminate useless indirection
* src/relation.h, src/relation.c (relation_digraph): Don't take the biteetv as a pointer, it is already a pointer (as it's an array).
This commit is contained in:
@@ -42,9 +42,11 @@ void relation_print (relation r, size_t size,
|
||||
/* Compute the transitive closure of the FUNCTION on the relation R
|
||||
with SIZE vertices.
|
||||
|
||||
If R (NODE-1, NODE-2) then on exit FUNCTION[NODE - 1] was extended
|
||||
(unioned) with FUNCTION[NODE - 2]. */
|
||||
void relation_digraph (relation r, relation_node size, bitsetv *function);
|
||||
If R (NODE1, NODE2) then on exit FUNCTION[NODE1] was extended
|
||||
(unioned) with FUNCTION[NODE2].
|
||||
|
||||
FUNCTION is in-out, R is read only. */
|
||||
void relation_digraph (const relation r, relation_node size, bitsetv function);
|
||||
|
||||
/* Destructively transpose *R_ARG, of size SIZE. */
|
||||
void relation_transpose (relation *R_arg, relation_node size);
|
||||
|
||||
Reference in New Issue
Block a user