summaryrefslogtreecommitdiff
path: root/yjit.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-02-26 13:20:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-02-26 13:20:43 +0900
commitef00c6da884499c8fab8531a3780e547e87c04fa (patch)
tree3a916b0415e1a3bebabb8ebc983bef3d37588ed2 /yjit.c
parent672b81b090fb346b71f1c8e87a51a7c33f239df4 (diff)
Adjust `else` style to be consistent in each files [ci skip]
Diffstat (limited to 'yjit.c')
-rw-r--r--yjit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/yjit.c b/yjit.c
index 683e8ae366..d608ad32fa 100644
--- a/yjit.c
+++ b/yjit.c
@@ -527,7 +527,8 @@ rb_get_cme_def_type(const rb_callable_method_entry_t *cme)
{
if (UNDEFINED_METHOD_ENTRY_P(cme)) {
return VM_METHOD_TYPE_UNDEF;
- } else {
+ }
+ else {
return cme->def->type;
}
}