diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-07-14 17:59:24 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2019-07-14 18:07:40 +0900 |
commit | 2553608c3b8dde72e8255e2306b5208813fff461 (patch) | |
tree | 5360599c2810b1d8564a4b20a7f58fe44d5aa39a /complex.c | |
parent | d30d404bc4b848f84959799b543de4bdbd8eef2b (diff) | |
download | ruby-2553608c3b8dde72e8255e2306b5208813fff461.tar.gz |
Removed binop macro which has not been used
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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)\ |