Wrap YJIT guard clause in parentheses

This commit is contained in:
Gavin Morrice 2024-04-15 16:28:20 +01:00 committed by GitHub
parent 6d3fd5b98c
commit c325216cdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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