From 2553608c3b8dde72e8255e2306b5208813fff461 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 14 Jul 2019 17:59:24 +0900 Subject: Removed binop macro which has not been used --- complex.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/complex.c b/complex.c index 313e564186..44fd65756c 100644 --- a/complex.c +++ b/complex.c @@ -45,13 +45,6 @@ static ID id_abs, id_arg, #define f_boolcast(x) ((x) ? Qtrue : Qfalse) -#define binop(n,op) \ -inline static VALUE \ -f_##n(VALUE x, VALUE y)\ -{\ - return rb_funcall(x, (op), 1, y);\ -} - #define fun1(n) \ inline static VALUE \ f_##n(VALUE x)\ -- cgit v1.2.3