From 19cc58d3cb864d582ff400cb7567ac65c6fff849 Mon Sep 17 00:00:00 2001 From: Kazuki Yamaguchi Date: Fri, 28 Apr 2017 14:13:21 +0900 Subject: Expand rb_define_copy_func() macro It's not really "missing". Let's expand that, as it does not improve the readability so much. --- ext/openssl/ossl_bn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/openssl/ossl_bn.c') diff --git a/ext/openssl/ossl_bn.c b/ext/openssl/ossl_bn.c index 4e371cb2..89577c25 100644 --- a/ext/openssl/ossl_bn.c +++ b/ext/openssl/ossl_bn.c @@ -1059,7 +1059,7 @@ Init_ossl_bn(void) rb_define_alloc_func(cBN, ossl_bn_alloc); rb_define_method(cBN, "initialize", ossl_bn_initialize, -1); - rb_define_copy_func(cBN, ossl_bn_copy); + rb_define_method(cBN, "initialize_copy", ossl_bn_copy, 1); rb_define_method(cBN, "copy", ossl_bn_copy, 1); /* swap (=coerce?) */ -- cgit v1.2.3