Arrange as same as comment and return statement

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66585 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2018-12-27 09:09:42 +00:00
Родитель bc64df876e
Коммит e3e09806a2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -18,8 +18,8 @@ sp_inc_of_sendish(const struct rb_call_info *ci)
* 3. Pop receiver.
* 4. Push return value.
*/
const int argc = ci->orig_argc;
const int argb = (ci->flag & VM_CALL_ARGS_BLOCKARG) ? 1 : 0;
const int argc = ci->orig_argc;
const int recv = 1;
const int retn = 1;