From a826747ade4b6ae52ee9883120c1b1cd7aa98b3f Mon Sep 17 00:00:00 2001 From: S-H-GAMELINKS Date: Sat, 8 May 2021 14:36:20 +0900 Subject: [PATCH] Remove unneeded comments in rational.c --- rational.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rational.c b/rational.c index b79809dc0e..8fae9c72e0 100644 --- a/rational.c +++ b/rational.c @@ -1881,8 +1881,6 @@ nurat_marshal_load(VALUE self, VALUE a) return self; } -/* --- */ - VALUE rb_rational_reciprocal(VALUE x) { @@ -2814,8 +2812,6 @@ Init_Rational(void) rb_define_private_method(compat, "marshal_load", nurat_marshal_load, 1); rb_marshal_define_compat(rb_cRational, compat, nurat_dumper, nurat_loader); - /* --- */ - rb_define_method(rb_cInteger, "gcd", rb_gcd, 1); rb_define_method(rb_cInteger, "lcm", rb_lcm, 1); rb_define_method(rb_cInteger, "gcdlcm", rb_gcdlcm, 1);