fix delete unnecessary return
Was my mistake to put return here.
This commit is contained in:
parent
563f177aa4
commit
7cff2f4585
@ -156,7 +156,7 @@ namespace test_rb_rescue {
|
|||||||
{
|
{
|
||||||
#ifdef HAVE_NULLPTR
|
#ifdef HAVE_NULLPTR
|
||||||
rb_rescue(RUBY_METHOD_FUNC(begin), self, nullptr, self);
|
rb_rescue(RUBY_METHOD_FUNC(begin), self, nullptr, self);
|
||||||
return rb_rescue(begin, self, nullptr, self);
|
rb_rescue(begin, self, nullptr, self);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
rb_rescue(RUBY_METHOD_FUNC(begin), self, RUBY_METHOD_FUNC(rescue), self); // old
|
rb_rescue(RUBY_METHOD_FUNC(begin), self, RUBY_METHOD_FUNC(rescue), self); // old
|
||||||
|
Loading…
x
Reference in New Issue
Block a user