aboutsummaryrefslogtreecommitdiffstats
path: root/lib/forwardable.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-12 05:46:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-12 05:46:13 +0000
commit241dced625f9ba8a4071954579778a0940e75179 (patch)
tree3c9d22ed57adc47ccb2fbb414572a13a85007bfd /lib/forwardable.rb
parentc33e716d6d2069e78f0b96793547355b0679a2d7 (diff)
downloadruby-241dced625f9ba8a4071954579778a0940e75179.tar.gz
Disable tailcall optimization [Bug #15303]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/forwardable.rb')
-rw-r--r--lib/forwardable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/forwardable.rb b/lib/forwardable.rb
index 7791a97b06..bcd462a97c 100644
--- a/lib/forwardable.rb
+++ b/lib/forwardable.rb
@@ -222,7 +222,7 @@ module Forwardable
#{pre}
begin
#{accessor}
- end#{method_call}#{FILTER_EXCEPTION}
+ end#{method_call}
end
end
end;