complex.c, rational.c: adjust indent

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-03-07 11:49:23 +00:00
parent 7ab3f98604
commit 6010d756c0
2 changed files with 4 additions and 4 deletions

View File

@ -625,9 +625,9 @@ nucomp_imag(VALUE self)
static VALUE
nucomp_negate(VALUE self)
{
get_dat1(self);
return f_complex_new2(CLASS_OF(self),
f_negate(dat->real), f_negate(dat->imag));
get_dat1(self);
return f_complex_new2(CLASS_OF(self),
f_negate(dat->real), f_negate(dat->imag));
}
/*

View File

@ -45,7 +45,7 @@ static ID id_abs, id_idiv, id_integer_p,
inline static VALUE \
f_##n(VALUE x, VALUE y)\
{\
return rb_funcall(x, (op), 1, y);\
return rb_funcall(x, (op), 1, y); \
}
#define fun1(n) \