Remove a redundant cast between the exact same types

This commit is contained in:
Nobuyoshi Nakada 2021-10-05 15:56:34 +09:00
Родитель 126122bb6c
Коммит 5a961c3768
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -6809,7 +6809,7 @@ rb_str_casemap(VALUE source, OnigCaseFoldType *flags, rb_encoding *enc)
current_buffer->next = NULL;
current_buffer->capa = capa;
buffer_length_or_invalid = enc->case_map(flags,
(const OnigUChar**)&source_current, source_end,
&source_current, source_end,
current_buffer->space,
current_buffer->space+current_buffer->capa,
enc);