From: Paul Eggert Date: Wed, 2 Oct 2002 07:55:44 +0000 (+0000) Subject: (bitsetv_alloc, bitsetv_create): X-Git-Tag: BISON-1_75~76 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/eb6172cd1ef9c71547e75a9501e2a435d479cd2e (bitsetv_alloc, bitsetv_create): Use bitset_bindex, not int or unsigned int or size_t, to count bits. --- diff --git a/lib/bitsetv.h b/lib/bitsetv.h index 84a2c667..f11bd9d5 100644 --- a/lib/bitsetv.h +++ b/lib/bitsetv.h @@ -25,12 +25,12 @@ typedef bitset * bitsetv; /* Create a vector of N_VECS bitsets, each of N_BITS, and of type TYPE. */ -extern bitsetv bitsetv_alloc PARAMS ((unsigned int, unsigned int, +extern bitsetv bitsetv_alloc PARAMS ((bitset_bindex, bitset_bindex, enum bitset_type)); /* Create a vector of N_VECS bitsets, each of N_BITS, and with attribute hints specified by ATTR. */ -extern bitsetv bitsetv_create PARAMS ((unsigned int, unsigned int, +extern bitsetv bitsetv_create PARAMS ((bitset_bindex, bitset_bindex, unsigned int)); /* Free vector of bitsets. */