summaryrefslogtreecommitdiff
path: root/symbol.h
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-15 18:10:16 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-15 18:10:16 +0000
commit343b2aa615b109ea6891326f45a465e90233bbeb (patch)
tree0211ed9fbf10716f6ff46c34fef46e824fc3381e /symbol.h
parent62550b1d0f07389e2806540047b8ea409ec2d707 (diff)
merge revision(s) 51410: [Backport #11396]
* symbol.h (struct RSymbol): add hashval field * symbol.c (dsymbol_alloc): setup hashval field once * hash.c (rb_any_hash): return RSymbol->hashval directly * common.mk: hash.o depends on symbol.h Thanks to Bruno Escherl <bruno@escherl.net> for the bug report [ruby-core:70129] [Bug #11396] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@51589 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'symbol.h')
-rw-r--r--symbol.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/symbol.h b/symbol.h
index 549eabdf61..5c52b9742b 100644
--- a/symbol.h
+++ b/symbol.h
@@ -25,6 +25,7 @@
struct RSymbol {
struct RBasic basic;
+ st_index_t hashval;
VALUE fstr;
ID id;
};