diff options
author | Koichi Sasada <ko1@atdot.net> | 2021-12-17 14:33:26 +0900 |
---|---|---|
committer | Koichi Sasada <ko1@atdot.net> | 2021-12-17 15:46:50 +0900 |
commit | ce6fc20f973e307071533bfd9699da88986c67a3 (patch) | |
tree | fee23190115cdaebb2042ea896686356017a3845 | |
parent | c8f2766ae2312eedbcf947b189a8629696bb8bb3 (diff) |
data type should be `static`
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5288
-rw-r--r-- | hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6653,7 +6653,7 @@ env_dup(VALUE obj) rb_raise(rb_eTypeError, "Cannot dup ENV, use ENV.to_h to get a copy of ENV as a hash"); } -const rb_data_type_t env_data_type = { +static const rb_data_type_t env_data_type = { "ENV", { NULL, |