Use UNDEF_P

This commit is contained in:
Nobuyoshi Nakada 2024-01-30 14:48:59 +09:00
parent 03246171cc
commit 361b3efe16
No known key found for this signature in database
GPG key ID: 3582D74E1FEE4465
9 changed files with 45 additions and 45 deletions

View file

@ -772,7 +772,7 @@ static VALUE
wkmap_aref(VALUE self, VALUE key)
{
VALUE obj = wkmap_lookup(self, key);
return obj != Qundef ? obj : Qnil;
return !UNDEF_P(obj) ? obj : Qnil;
}
struct wkmap_aset_args {
@ -927,7 +927,7 @@ wkmap_getkey(VALUE self, VALUE key)
static VALUE
wkmap_has_key(VALUE self, VALUE key)
{
return RBOOL(wkmap_lookup(self, key) != Qundef);
return RBOOL(!UNDEF_P(wkmap_lookup(self, key)));
}
/*