Skip to content

Commit 17f87d2

Browse files
mark initialize_copy as :nodoc:
1 parent 97911e6 commit 17f87d2

20 files changed

+26
-0
lines changed

ext/openssl/ossl_bn.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,7 @@ BIGNUM_NUM(num_bytes)
929929
*/
930930
BIGNUM_NUM(num_bits)
931931

932+
/* :nodoc: */
932933
static VALUE
933934
ossl_bn_copy(VALUE self, VALUE other)
934935
{

ext/openssl/ossl_cipher.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ ossl_cipher_initialize(VALUE self, VALUE str)
130130
return self;
131131
}
132132

133+
/* :nodoc: */
133134
static VALUE
134135
ossl_cipher_copy(VALUE self, VALUE other)
135136
{

ext/openssl/ossl_digest.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ ossl_digest_initialize(int argc, VALUE *argv, VALUE self)
141141
return self;
142142
}
143143

144+
/* :nodoc: */
144145
static VALUE
145146
ossl_digest_copy(VALUE self, VALUE other)
146147
{

ext/openssl/ossl_hmac.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ ossl_hmac_initialize(VALUE self, VALUE key, VALUE digest)
113113
return self;
114114
}
115115

116+
/* :nodoc: */
116117
static VALUE
117118
ossl_hmac_copy(VALUE self, VALUE other)
118119
{

ext/openssl/ossl_ocsp.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ ossl_ocspreq_alloc(VALUE klass)
173173
return obj;
174174
}
175175

176+
/* :nodoc: */
176177
static VALUE
177178
ossl_ocspreq_initialize_copy(VALUE self, VALUE other)
178179
{
@@ -513,6 +514,7 @@ ossl_ocspres_alloc(VALUE klass)
513514
return obj;
514515
}
515516

517+
/* :nodoc: */
516518
static VALUE
517519
ossl_ocspres_initialize_copy(VALUE self, VALUE other)
518520
{
@@ -669,6 +671,7 @@ ossl_ocspbres_alloc(VALUE klass)
669671
return obj;
670672
}
671673

674+
/* :nodoc: */
672675
static VALUE
673676
ossl_ocspbres_initialize_copy(VALUE self, VALUE other)
674677
{
@@ -1157,6 +1160,7 @@ ossl_ocspsres_initialize(VALUE self, VALUE arg)
11571160
return self;
11581161
}
11591162

1163+
/* :nodoc: */
11601164
static VALUE
11611165
ossl_ocspsres_initialize_copy(VALUE self, VALUE other)
11621166
{
@@ -1418,6 +1422,7 @@ ossl_ocspcid_alloc(VALUE klass)
14181422
return obj;
14191423
}
14201424

1425+
/* :nodoc: */
14211426
static VALUE
14221427
ossl_ocspcid_initialize_copy(VALUE self, VALUE other)
14231428
{

ext/openssl/ossl_pkcs12.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ ossl_pkcs12_s_allocate(VALUE klass)
6060
return obj;
6161
}
6262

63+
/* :nodoc: */
6364
static VALUE
6465
ossl_pkcs12_initialize_copy(VALUE self, VALUE other)
6566
{

ext/openssl/ossl_pkcs7.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,7 @@ ossl_pkcs7_initialize(int argc, VALUE *argv, VALUE self)
392392
return self;
393393
}
394394

395+
/* :nodoc: */
395396
static VALUE
396397
ossl_pkcs7_copy(VALUE self, VALUE other)
397398
{

ext/openssl/ossl_pkey.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,7 @@ ossl_pkey_initialize(VALUE self)
615615
}
616616

617617
#ifdef HAVE_EVP_PKEY_DUP
618+
/* :nodoc: */
618619
static VALUE
619620
ossl_pkey_initialize_copy(VALUE self, VALUE other)
620621
{

ext/openssl/ossl_pkey_dh.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ ossl_dh_initialize(int argc, VALUE *argv, VALUE self)
128128
}
129129

130130
#ifndef HAVE_EVP_PKEY_DUP
131+
/* :nodoc: */
131132
static VALUE
132133
ossl_dh_initialize_copy(VALUE self, VALUE other)
133134
{

ext/openssl/ossl_pkey_dsa.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ ossl_dsa_initialize(int argc, VALUE *argv, VALUE self)
140140
}
141141

142142
#ifndef HAVE_EVP_PKEY_DUP
143+
/* :nodoc: */
143144
static VALUE
144145
ossl_dsa_initialize_copy(VALUE self, VALUE other)
145146
{

0 commit comments

Comments
 (0)