[ruby/prism] Make old compilers happy

https://github.com/ruby/prism/commit/145a67d1c3
This commit is contained in:
Kevin Newton 2023-11-03 11:47:17 -04:00 коммит произвёл git
Родитель fff7a3c824
Коммит cc9bcad79c
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -331,6 +331,9 @@ parser_comments(pm_parser_t *parser, VALUE source) {
case PM_COMMENT___END__:
type = rb_cPrismDATAComment;
break;
default:
type = rb_cPrismInlineComment;
break;
}
VALUE comment_argv[] = { rb_class_new_instance(3, location_argv, rb_cPrismLocation) };