summaryrefslogtreecommitdiff
path: root/complex.c
diff options
context:
space:
mode:
authorS-H-GAMELINKS <gamelinks007@gmail.com>2021-09-03 12:50:17 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-03 13:20:55 +0900
commit250b86bbee0235574d7496afd548d6f97da83134 (patch)
tree11d39cc3af5b90d2cd573756b3d238c3430e9fa2 /complex.c
parent3d6a47558793ddbb280a0d046b786754cea4f263 (diff)
downloadruby-250b86bbee0235574d7496afd548d6f97da83134.tar.gz
Remove unneeded comment
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/complex.c b/complex.c
index 0c50196627..54690ebc1d 100644
--- a/complex.c
+++ b/complex.c
@@ -1524,8 +1524,6 @@ nucomp_marshal_load(VALUE self, VALUE a)
return self;
}
-/* --- */
-
VALUE
rb_complex_raw(VALUE x, VALUE y)
{
@@ -2148,8 +2146,6 @@ nucomp_s_convert(int argc, VALUE *argv, VALUE klass)
return nucomp_convert(klass, a1, a2, TRUE);
}
-/* --- */
-
/*
* call-seq:
* num.real -> self
@@ -2404,8 +2400,6 @@ Init_Complex(void)
rb_define_private_method(compat, "marshal_load", nucomp_marshal_load, 1);
rb_marshal_define_compat(rb_cComplex, compat, nucomp_dumper, nucomp_loader);
- /* --- */
-
rb_define_method(rb_cComplex, "to_i", nucomp_to_i, 0);
rb_define_method(rb_cComplex, "to_f", nucomp_to_f, 0);
rb_define_method(rb_cComplex, "to_r", nucomp_to_r, 0);
@@ -2418,8 +2412,6 @@ Init_Complex(void)
rb_define_private_method(CLASS_OF(rb_cComplex), "convert", nucomp_s_convert, -1);
- /* --- */
-
rb_define_method(rb_cNumeric, "real", numeric_real, 0);
rb_define_method(rb_cNumeric, "imaginary", numeric_imag, 0);
rb_define_method(rb_cNumeric, "imag", numeric_imag, 0);