Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0
1.2.1
4 changes: 2 additions & 2 deletions ext/bitset/bitset.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static VALUE rb_bitset_initialize(VALUE self, VALUE ary) {
return self;
}

static VALUE rb_bitset_size(VALUE self, VALUE len) {
static VALUE rb_bitset_size(VALUE self) {
Bitset * bs = get_bitset(self);
return INT2NUM(bs->len);
}
Expand Down Expand Up @@ -521,7 +521,7 @@ static VALUE rb_bitset_values_at(VALUE self, VALUE index_array) {
}

/** This could run a bit faster if you worked at it. */
static VALUE rb_bitset_reverse(VALUE self, VALUE index_array) {
static VALUE rb_bitset_reverse(VALUE self) {
int i;
Bitset * bs = get_bitset(self);
int len = bs->len;
Expand Down