1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Removed leading spaces [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2020-12-16 12:14:30 +09:00
parent cfefd1e524
commit b30d7fea56
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

2
enum.c
View file

@ -117,7 +117,7 @@ enum_grep0(VALUE obj, VALUE pat, VALUE test)
struct MEMO *memo = MEMO_NEW(pat, ary, test);
rb_block_call_func_t fn;
if (rb_block_given_p()) {
fn = grep_iter_i;
fn = grep_iter_i;
}
else if (RB_TYPE_P(pat, T_REGEXP) &&
LIKELY(rb_method_basic_definition_p(CLASS_OF(pat), idEqq))) {