diff options
author | Sarun Rattanasiri <[email protected]> | 2025-03-08 21:43:11 +0700 |
---|---|---|
committer | git <[email protected]> | 2025-03-12 16:03:47 +0000 |
commit | 9ec8dc9c6504e62c6a3ff6b111cee53f67d5508c (patch) | |
tree | 93f7ffd27d176916ad8caa6a22af7b51caddae3e /ext/openssl/ossl_ocsp.c | |
parent | b8af9325c0f3440c5bec05605ec450ce6b0dacc5 (diff) |
[ruby/openssl] mark `initialize_copy` as :nodoc:
https://github.com/ruby/openssl/commit/17f87d2cf0
Diffstat (limited to 'ext/openssl/ossl_ocsp.c')
-rw-r--r-- | ext/openssl/ossl_ocsp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/openssl/ossl_ocsp.c b/ext/openssl/ossl_ocsp.c index 156cc2cbce..cb2f1a62d0 100644 --- a/ext/openssl/ossl_ocsp.c +++ b/ext/openssl/ossl_ocsp.c @@ -173,6 +173,7 @@ ossl_ocspreq_alloc(VALUE klass) return obj; } +/* :nodoc: */ static VALUE ossl_ocspreq_initialize_copy(VALUE self, VALUE other) { @@ -513,6 +514,7 @@ ossl_ocspres_alloc(VALUE klass) return obj; } +/* :nodoc: */ static VALUE ossl_ocspres_initialize_copy(VALUE self, VALUE other) { @@ -669,6 +671,7 @@ ossl_ocspbres_alloc(VALUE klass) return obj; } +/* :nodoc: */ static VALUE ossl_ocspbres_initialize_copy(VALUE self, VALUE other) { @@ -1157,6 +1160,7 @@ ossl_ocspsres_initialize(VALUE self, VALUE arg) return self; } +/* :nodoc: */ static VALUE ossl_ocspsres_initialize_copy(VALUE self, VALUE other) { @@ -1418,6 +1422,7 @@ ossl_ocspcid_alloc(VALUE klass) return obj; } +/* :nodoc: */ static VALUE ossl_ocspcid_initialize_copy(VALUE self, VALUE other) { |