summaryrefslogtreecommitdiff
path: root/complex.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-14 17:59:24 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-14 18:07:40 +0900
commit2553608c3b8dde72e8255e2306b5208813fff461 (patch)
tree5360599c2810b1d8564a4b20a7f58fe44d5aa39a /complex.c
parentd30d404bc4b848f84959799b543de4bdbd8eef2b (diff)
Removed binop macro which has not been used
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c7
1 files changed, 0 insertions, 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)\