summaryrefslogtreecommitdiff
path: root/complex.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-07 11:49:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-03-07 11:49:24 +0000
commitb479a2d43953ef8e1b498a3f1c0dac3e32269c69 (patch)
tree30e600871d284ac09d6813dd9f91ec3a8247dbdb /complex.c
parent6010d756c0df8c8f0fc24174bbb2960632068bd1 (diff)
complex.c, rational.c: no backref
Since r37702, parsing complex and rational do not use regexp. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r--complex.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/complex.c b/complex.c
index 5474fb1478..b2f206d7ce 100644
--- a/complex.c
+++ b/complex.c
@@ -1869,16 +1869,13 @@ string_to_c(VALUE self)
static VALUE
nucomp_s_convert(int argc, VALUE *argv, VALUE klass)
{
- VALUE a1, a2, backref;
+ VALUE a1, a2;
rb_scan_args(argc, argv, "11", &a1, &a2);
if (NIL_P(a1) || (argc == 2 && NIL_P(a2)))
rb_raise(rb_eTypeError, "can't convert nil into Complex");
- backref = rb_backref_get();
- rb_match_busy(backref);
-
if (RB_TYPE_P(a1, T_STRING)) {
a1 = string_to_c_strict(a1);
}
@@ -1887,8 +1884,6 @@ nucomp_s_convert(int argc, VALUE *argv, VALUE klass)
a2 = string_to_c_strict(a2);
}
- rb_backref_set(backref);
-
if (RB_TYPE_P(a1, T_COMPLEX)) {
{
get_dat1(a1);