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_hmac.c | |
parent | b8af9325c0f3440c5bec05605ec450ce6b0dacc5 (diff) |
[ruby/openssl] mark `initialize_copy` as :nodoc:
https://github.com/ruby/openssl/commit/17f87d2cf0
Diffstat (limited to 'ext/openssl/ossl_hmac.c')
-rw-r--r-- | ext/openssl/ossl_hmac.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/openssl/ossl_hmac.c b/ext/openssl/ossl_hmac.c index 3aa7aead4d..b304827579 100644 --- a/ext/openssl/ossl_hmac.c +++ b/ext/openssl/ossl_hmac.c @@ -113,6 +113,7 @@ ossl_hmac_initialize(VALUE self, VALUE key, VALUE digest) return self; } +/* :nodoc: */ static VALUE ossl_hmac_copy(VALUE self, VALUE other) { |