mirror of https://github.com/rails/rails
Wrap YJIT guard clause in parentheses
This commit is contained in:
parent
6d3fd5b98c
commit
c325216cdc
|
@ -4,7 +4,7 @@
|
||||||
# If you are deploying to a memory constrained environment
|
# If you are deploying to a memory constrained environment
|
||||||
# you may want to delete this file, but otherwise it's free
|
# you may want to delete this file, but otherwise it's free
|
||||||
# performance.
|
# performance.
|
||||||
if defined? RubyVM::YJIT.enable
|
if defined?(RubyVM::YJIT.enable)
|
||||||
Rails.application.config.after_initialize do
|
Rails.application.config.after_initialize do
|
||||||
RubyVM::YJIT.enable
|
RubyVM::YJIT.enable
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue