зеркало из https://github.com/github/ruby.git
Prefer RBOOL
This commit is contained in:
Родитель
069cca6f74
Коммит
789da481fc
|
@ -693,7 +693,7 @@ checktype
|
||||||
(VALUE val)
|
(VALUE val)
|
||||||
(VALUE ret)
|
(VALUE ret)
|
||||||
{
|
{
|
||||||
ret = (TYPE(val) == (int)type) ? Qtrue : Qfalse;
|
ret = RBOOL(TYPE(val) == (int)type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************************/
|
/**********************************************************/
|
||||||
|
|
2
yjit.rb
2
yjit.rb
|
@ -149,7 +149,7 @@ module RubyVM::YJIT
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.enabled?
|
def self.enabled?
|
||||||
Primitive.cexpr! 'rb_yjit_enabled_p() ? Qtrue : Qfalse'
|
Primitive.cexpr! 'RBOOL(rb_yjit_enabled_p())'
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.simulate_oom!
|
def self.simulate_oom!
|
||||||
|
|
Загрузка…
Ссылка в новой задаче