From 42c98194b37bf2c0b0f3f88f8530f46f55a6d55c Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 19 Oct 2017 10:58:08 +0000 Subject: freeze Complex and Rational * complex.c (nucomp_s_new_internal, nucomp_loader): Complex instances are always frozen now. [Feature #13983] * rational.c (nurat_s_new_internal, nurat_loader): Rational instances are always frozen now. [Feature #13983] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- complex.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'complex.c') diff --git a/complex.c b/complex.c index 5d84106441..b340a55502 100644 --- a/complex.c +++ b/complex.c @@ -298,6 +298,7 @@ nucomp_s_new_internal(VALUE klass, VALUE real, VALUE imag) RCOMPLEX_SET_REAL(obj, real); RCOMPLEX_SET_IMAG(obj, imag); + OBJ_FREEZE_RAW(obj); return (VALUE)obj; } @@ -1406,6 +1407,7 @@ nucomp_loader(VALUE self, VALUE a) RCOMPLEX_SET_REAL(dat, rb_ivar_get(a, id_i_real)); RCOMPLEX_SET_IMAG(dat, rb_ivar_get(a, id_i_imag)); + OBJ_FREEZE_RAW(self); return self; } -- cgit v1.2.3