From c8094ff154065f243292a09dce5d4c8d90f8309a Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 16 Feb 2018 08:39:48 +0000 Subject: no ID cache in Init functions Init functions are called only once, cache is useless. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/digest/bubblebabble/bubblebabble.c | 1 + ext/digest/digest.c | 1 + 2 files changed, 2 insertions(+) (limited to 'ext/digest') diff --git a/ext/digest/bubblebabble/bubblebabble.c b/ext/digest/bubblebabble/bubblebabble.c index 8f436908d3..6557e43c9d 100644 --- a/ext/digest/bubblebabble/bubblebabble.c +++ b/ext/digest/bubblebabble/bubblebabble.c @@ -124,6 +124,7 @@ rb_digest_instance_bubblebabble(VALUE self) void Init_bubblebabble(void) { +#undef rb_intern VALUE rb_mDigest, rb_mDigest_Instance, rb_cDigest_Class; rb_require("digest"); diff --git a/ext/digest/digest.c b/ext/digest/digest.c index 9838ed33de..7d285cfe74 100644 --- a/ext/digest/digest.c +++ b/ext/digest/digest.c @@ -728,6 +728,7 @@ rb_digest_base_block_length(VALUE self) void Init_digest(void) { +#undef rb_intern id_reset = rb_intern("reset"); id_update = rb_intern("update"); id_finish = rb_intern("finish"); -- cgit v1.2.3