Skip to content
Merged
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 ext/ios_parser/c_lexer/lexer.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ static VALUE allocate(VALUE klass) {
return Data_Wrap_Struct(klass, mark, deallocate, lex);
}

static VALUE initialize(VALUE self, VALUE input_text) {
static VALUE initialize(VALUE self) {
LexInfo *lex;
Data_Get_Struct(self, LexInfo, lex);

Expand Down
2 changes: 1 addition & 1 deletion lib/ios_parser/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module IOSParser
class << self
def version
'0.9.0'
'0.10.0'
end
end
end
Loading