mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-26 13:45:13 -07:00
Fix a missing return warning.
This commit is contained in:
@@ -26,6 +26,7 @@ static VALUE rb_initialize(VALUE self, VALUE source)
|
|||||||
Data_Get_Struct(self, struct liquid_tokenizer, tokenizer);
|
Data_Get_Struct(self, struct liquid_tokenizer, tokenizer);
|
||||||
tokenizer->cursor = RSTRING_PTR(source);
|
tokenizer->cursor = RSTRING_PTR(source);
|
||||||
tokenizer->length = RSTRING_LEN(source);
|
tokenizer->length = RSTRING_LEN(source);
|
||||||
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *token)
|
void liquid_tokenizer_next(struct liquid_tokenizer *tokenizer, struct token *token)
|
||||||
|
|||||||
Reference in New Issue
Block a user