diff options
author | Matt Valentine-House <[email protected]> | 2023-02-17 15:51:16 +0000 |
---|---|---|
committer | Matt Valentine-House <[email protected]> | 2023-04-06 11:07:16 +0100 |
commit | 026321c5b976c5e95731046b94555b1226198be4 (patch) | |
tree | 35ba000a654e41ede4ccb9a30322f08b748cb2f7 /complex.c | |
parent | 879cda98a4cdce91d736ea9ba81168effe090718 (diff) |
[Feature #19474] Refactor NEWOBJ macros
NEWOBJ_OF is now our canonical newobj macro. It takes an optional ec
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/7393
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -391,7 +391,8 @@ k_numeric_p(VALUE x) inline static VALUE nucomp_s_new_internal(VALUE klass, VALUE real, VALUE imag) { - NEWOBJ_OF(obj, struct RComplex, klass, T_COMPLEX | (RGENGC_WB_PROTECTED_COMPLEX ? FL_WB_PROTECTED : 0)); + NEWOBJ_OF(obj, struct RComplex, klass, + T_COMPLEX | (RGENGC_WB_PROTECTED_COMPLEX ? FL_WB_PROTECTED : 0), sizeof(struct RComplex), 0); RCOMPLEX_SET_REAL(obj, real); RCOMPLEX_SET_IMAG(obj, imag); |